diff options
| author | Tom Christie | 2012-11-23 13:21:18 +0000 |
|---|---|---|
| committer | Tom Christie | 2012-11-23 13:21:18 +0000 |
| commit | fd89bca35f065cd3917fffc79b59927460a88a3a (patch) | |
| tree | 1644b495a280277b9252971850b57f6d7143d2fc /rest_framework | |
| parent | 95aa99d8dfc4b073bf549f5acba8ef2387512c86 (diff) | |
| download | django-rest-framework-fd89bca35f065cd3917fffc79b59927460a88a3a.tar.bz2 | |
Version 2.1.6. AKA: I am a doofus.2.1.6
Diffstat (limited to 'rest_framework')
| -rw-r--r-- | rest_framework/__init__.py | 2 | ||||
| -rw-r--r-- | rest_framework/permissions.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index c1452d52..48cebbc5 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -1,3 +1,3 @@ -__version__ = '2.1.5' +__version__ = '2.1.6' VERSION = __version__ # synonym diff --git a/rest_framework/permissions.py b/rest_framework/permissions.py index 258eb9ad..655b78a3 100644 --- a/rest_framework/permissions.py +++ b/rest_framework/permissions.py @@ -109,6 +109,6 @@ class DjangoModelPermissions(BasePermission): if (request.user and request.user.is_authenticated() and - request.user.has_perm(perms, obj)): + request.user.has_perms(perms, obj)): return True return False |
