summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/contrib/auth/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/models.py b/django/contrib/auth/models.py
index e8384ba353..5de8927bd6 100644
--- a/django/contrib/auth/models.py
+++ b/django/contrib/auth/models.py
@@ -282,7 +282,7 @@ class AnonymousUser(object):
pass
def __str__(self):
- return _('AnonymousUser')
+ return 'AnonymousUser'
def __eq__(self, other):
return isinstance(other, self.__class__)