From 841a87785a78cc37362a66856025bae2f7ba633c Mon Sep 17 00:00:00 2001 From: elena Date: Mon, 15 Jun 2015 22:36:03 +1000 Subject: [PATCH] Corrected to not erroneously mention email as being required. Email field isn't required. --- django/contrib/auth/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'),