aboutsummaryrefslogtreecommitdiffstats
path: root/examples/sandbox
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sandbox')
-rw-r--r--examples/sandbox/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/sandbox/views.py b/examples/sandbox/views.py
index d5b59284..1c55c28f 100644
--- a/examples/sandbox/views.py
+++ b/examples/sandbox/views.py
@@ -1,10 +1,10 @@
"""The root view for the examples provided with Django REST framework"""
from django.core.urlresolvers import reverse
-from djangorestframework.views import BaseView
+from djangorestframework.views import View
-class Sandbox(BaseView):
+class Sandbox(View):
"""This is the sandbox for the examples provided with [Django REST framework](http://django-rest-framework.org).
These examples are provided to help you get a better idea of the some of the features of RESTful APIs created using the framework.