diff options
| author | elena <git@elena.net.au> | 2015-06-15 22:36:03 +1000 |
|---|---|---|
| committer | Markus Holtermann <info@markusholtermann.eu> | 2015-06-15 14:58:48 +0200 |
| commit | 841a87785a78cc37362a66856025bae2f7ba633c (patch) | |
| tree | c31e989f6ad05ac490a2060c79d0104da0f8f9be | |
| parent | 432623603ced935132798c22214f866af5b5f37c (diff) | |
Corrected to not erroneously mention email as being required.
Email field isn't required.
| -rw-r--r-- | django/contrib/auth/models.py | 2 |
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'), |
