aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authortom christie tom@tomchristie.com2011-02-06 22:28:03 +0000
committertom christie tom@tomchristie.com2011-02-06 22:28:03 +0000
commita8bcb2edc63564522b89b9950ea0882d6b25f24a (patch)
treeb94c847721845464f6a6edec4720e6f268191b2d /examples
parentfcd7f414c407c8dab7c0badbfa16476826dad3ae (diff)
downloaddjango-rest-framework-a8bcb2edc63564522b89b9950ea0882d6b25f24a.tar.bz2
Missing import
Diffstat (limited to 'examples')
-rw-r--r--examples/objectstore/views.py1
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