summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelena <git@elena.net.au>2015-06-15 22:36:03 +1000
committerMarkus Holtermann <info@markusholtermann.eu>2015-06-15 14:58:48 +0200
commit841a87785a78cc37362a66856025bae2f7ba633c (patch)
treec31e989f6ad05ac490a2060c79d0104da0f8f9be
parent432623603ced935132798c22214f866af5b5f37c (diff)
Corrected to not erroneously mention email as being required.
Email field isn't required.
-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 aa0669ffe0..dba23e137c 100644
--- a/django/contrib/auth/models.py
+++ b/django/contrib/auth/models.py
@@ -290,7 +290,7 @@ class AbstractUser(AbstractBaseUser, PermissionsMixin):
An abstract base class implementing a fully featured User model with
admin-compliant permissions.
- Username, password and email are required. Other fields are optional.
+ Username and password are required. Other fields are optional.
"""
username = models.CharField(
_('username'),