Further clarifying the message when get_queryset returns None to include the class name that was called

This commit is contained in:
Felipe Bidu 2017-08-22 12:13:22 -03:00
parent 5fd01d06ab
commit 6f2c3bcb12

View File

@ -123,7 +123,7 @@ class DjangoModelPermissions(BasePermission):
if hasattr(view, 'get_queryset'):
queryset = view.get_queryset()
assert queryset is not None, (
'The `.get_queryset()` method from the view did not return anything.'
'Return of {}.get_queryset() was None'.format(view.__class__.__name__)
)
else:
queryset = getattr(view, 'queryset', None)