diff --git a/django/contrib/auth/models.py b/django/contrib/auth/models.py index 18757f9e62..5b89fe845c 100644 --- a/django/contrib/auth/models.py +++ b/django/contrib/auth/models.py @@ -358,8 +358,8 @@ class AbstractUser(AbstractBaseUser, PermissionsMixin): Username, password and email are required. Other fields are optional. """ username = models.CharField(_('username'), max_length=30, unique=True, - help_text=_('Required. 30 characters or fewer. Letters, numbers and ' - '@/./+/-/_ characters'), + help_text=_('Required. 30 characters or fewer. Letters, digits and ' + '@/./+/-/_ only.'), validators=[ validators.RegexValidator(r'^[\w.@+-]+$', _('Enter a valid username.'), 'invalid') ])