aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework
diff options
context:
space:
mode:
authormarkotibold2011-05-17 00:18:45 +0200
committermarkotibold2011-05-17 00:18:45 +0200
commit66b9bda9bf9492c5e1ffba162e044aacb51bbd7e (patch)
treed6934f6e5ed67986108d071de16c9aad24ce4825 /djangorestframework
parent304786657a8cbff323f21b7297c142f6ca5a1cc1 (diff)
downloaddjango-rest-framework-66b9bda9bf9492c5e1ffba162e044aacb51bbd7e.tar.bz2
All top level modules are included. Ready for diving into the modules and documenting/ enhancing already existing docs.
Diffstat (limited to 'djangorestframework')
-rw-r--r--djangorestframework/views.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/djangorestframework/views.py b/djangorestframework/views.py
index 2e7e8418..81567e68 100644
--- a/djangorestframework/views.py
+++ b/djangorestframework/views.py
@@ -11,7 +11,7 @@ __all__ = (
'BaseView',
'ModelView',
'InstanceModelView',
- 'ListOrModelView',
+ 'ListModelView',
'ListOrCreateModelView'
)
@@ -131,7 +131,3 @@ class ListModelView(ListModelMixin, ModelView):
class ListOrCreateModelView(ListModelMixin, CreateModelMixin, ModelView):
"""A view which provides default operations for list and create, against a model in the database."""
pass
-
-
-
-