mirror of
https://github.com/django/django.git
synced 2024-12-23 01:25:58 +00:00
Improved error message for ASCIIUsernameValidator.
Follow up to 10bb21e71e
.
Co-authored-by: Paolo Melchiorre <paolo@melchiorre.org>
This commit is contained in:
parent
f3c89744cc
commit
c626173833
@ -9,8 +9,8 @@ from django.utils.translation import gettext_lazy as _
|
|||||||
class ASCIIUsernameValidator(validators.RegexValidator):
|
class ASCIIUsernameValidator(validators.RegexValidator):
|
||||||
regex = r"^[\w.@+-]+\Z"
|
regex = r"^[\w.@+-]+\Z"
|
||||||
message = _(
|
message = _(
|
||||||
"Enter a valid username. This value may contain only ASCII letters, "
|
"Enter a valid username. This value may contain only unaccented lowercase a-z "
|
||||||
"numbers, and @/./+/-/_ characters."
|
"and uppercase A-Z letters, numbers, and @/./+/-/_ characters."
|
||||||
)
|
)
|
||||||
flags = re.ASCII
|
flags = re.ASCII
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user