mirror of
https://github.com/django/django.git
synced 2024-12-22 17:16:24 +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):
|
||||
regex = r"^[\w.@+-]+\Z"
|
||||
message = _(
|
||||
"Enter a valid username. This value may contain only ASCII letters, "
|
||||
"numbers, and @/./+/-/_ characters."
|
||||
"Enter a valid username. This value may contain only unaccented lowercase a-z "
|
||||
"and uppercase A-Z letters, numbers, and @/./+/-/_ characters."
|
||||
)
|
||||
flags = re.ASCII
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user