Commit 108dfafa by Tom Christie

Fix Django 1.5/1.4 compat issue

parent c0e3e670
...@@ -126,8 +126,8 @@ class APIView(View): ...@@ -126,8 +126,8 @@ class APIView(View):
'as the result will be cached and reused between requests. ' 'as the result will be cached and reused between requests. '
'Use `.all()` or call `.get_queryset()` instead.' 'Use `.all()` or call `.get_queryset()` instead.'
) )
cls.queryset._fetch_all = force_evaluation cls.queryset._fetch_all = force_evaluation
cls.queryset._result_iter = force_evaluation # Django <= 1.5
view = super(APIView, cls).as_view(**initkwargs) view = super(APIView, cls).as_view(**initkwargs)
view.cls = cls view.cls = cls
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment