aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/generics.py
diff options
context:
space:
mode:
Diffstat (limited to 'rest_framework/generics.py')
-rw-r--r--rest_framework/generics.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/rest_framework/generics.py b/rest_framework/generics.py
index c2c59154..408b1246 100644
--- a/rest_framework/generics.py
+++ b/rest_framework/generics.py
@@ -3,6 +3,7 @@ Generic views that provide commonly needed behaviour.
"""
from __future__ import unicode_literals
+from django.db.models.query import QuerySet
from django.core.exceptions import PermissionDenied
from django.core.paginator import Paginator, InvalidPage
from django.http import Http404
@@ -214,7 +215,9 @@ class GenericAPIView(views.APIView):
% self.__class__.__name__
)
- return self.queryset._clone()
+ if isinstance(self.queryset, QuerySet):
+ return self.queryset.all()
+ return self.queryset
def get_object(self):
"""