summaryrefslogtreecommitdiff
path: root/django/contrib/auth/models.py
diff options
context:
space:
mode:
authorMatt Wiens <mwiens91@gmail.com>2018-12-27 16:34:14 -0800
committerTim Graham <timograham@gmail.com>2018-12-27 19:34:14 -0500
commite817ae74da0e515db31907ebcb2d00bcf7c3f5bc (patch)
tree95a250a4d845b9c8f4f8416fc8962cfe1937951e /django/contrib/auth/models.py
parentdd8ed64113947ed066b83e443053e389e8f77ebc (diff)
Followed style guide for model attribute ordering.
Diffstat (limited to 'django/contrib/auth/models.py')
-rw-r--r--django/contrib/auth/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/contrib/auth/models.py b/django/contrib/auth/models.py
index a144589804..1d40f3f07d 100644
--- a/django/contrib/auth/models.py
+++ b/django/contrib/auth/models.py
@@ -60,6 +60,7 @@ class Permission(models.Model):
verbose_name=_('content type'),
)
codename = models.CharField(_('codename'), max_length=100)
+
objects = PermissionManager()
class Meta: