diff options
| author | tom christie tom@tomchristie.com | 2011-02-06 22:28:03 +0000 | 
|---|---|---|
| committer | tom christie tom@tomchristie.com | 2011-02-06 22:28:03 +0000 | 
| commit | a8bcb2edc63564522b89b9950ea0882d6b25f24a (patch) | |
| tree | b94c847721845464f6a6edec4720e6f268191b2d | |
| parent | fcd7f414c407c8dab7c0badbfa16476826dad3ae (diff) | |
| download | django-rest-framework-a8bcb2edc63564522b89b9950ea0882d6b25f24a.tar.bz2 | |
Missing import
| -rw-r--r-- | examples/objectstore/views.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/examples/objectstore/views.py b/examples/objectstore/views.py index 90bdb9e3..e1b239dc 100644 --- a/examples/objectstore/views.py +++ b/examples/objectstore/views.py @@ -6,6 +6,7 @@ from djangorestframework.response import Response, status  import pickle  import os  import uuid +import operator  OBJECT_STORE_DIR = os.path.join(settings.MEDIA_ROOT, 'objectstore')  MAX_FILES = 20 | 
