Commit 412f737a by Tom Christie

Typo. Fixes #437.

parent 7ade5add
...@@ -109,6 +109,6 @@ class DjangoModelPermissions(BasePermission): ...@@ -109,6 +109,6 @@ class DjangoModelPermissions(BasePermission):
if (request.user and if (request.user and
request.user.is_authenticated() and request.user.is_authenticated() and
request.user.has_perms(perms, obj)): request.user.has_perm(perms, obj)):
return True return True
return False return False
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