aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/generics.py
diff options
context:
space:
mode:
authorStephan Groß2012-12-13 20:41:40 +0100
committerStephan Groß2012-12-13 20:41:40 +0100
commit76c840f1bb3b934dc2127faa04704ab4b11a018b (patch)
treeb45090d3ac4e1cf1b6c00d96ff7fc73966e98c2c /rest_framework/generics.py
parente198a2b37673a07a7cc374175c205362da34360e (diff)
downloaddjango-rest-framework-76c840f1bb3b934dc2127faa04704ab4b11a018b.tar.bz2
added missing line
Diffstat (limited to 'rest_framework/generics.py')
-rw-r--r--rest_framework/generics.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/rest_framework/generics.py b/rest_framework/generics.py
index 3e4f29ad..507b12cb 100644
--- a/rest_framework/generics.py
+++ b/rest_framework/generics.py
@@ -197,6 +197,7 @@ class RetrieveUpdateAPIView(mixins.RetrieveModelMixin,
def put(self, request, *args, **kwargs):
return self.update(request, *args, **kwargs)
+
class RetrieveDestroyAPIView(mixins.RetrieveModelMixin,
mixins.DestroyModelMixin,
SingleObjectAPIView):