diff options
Diffstat (limited to 'django/contrib/auth/context_processors.py')
| -rw-r--r-- | django/contrib/auth/context_processors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/context_processors.py b/django/contrib/auth/context_processors.py index 474002e550..ce1e42d574 100644 --- a/django/contrib/auth/context_processors.py +++ b/django/contrib/auth/context_processors.py @@ -13,7 +13,7 @@ class PermLookupDict(object): return self.user.has_perm("%s.%s" % (self.app_label, perm_name)) def __iter__(self): - # To fix 'item in perms.someapp' and __getitem__ iteraction we need to + # To fix 'item in perms.someapp' and __getitem__ interaction we need to # define __iter__. See #18979 for details. raise TypeError("PermLookupDict is not iterable.") |
