mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
[4.2.x] Improved error message for ASCIIUsernameValidator.
Follow up to10bb21e71e. Co-authored-by: Paolo Melchiorre <paolo@melchiorre.org> Backport ofc626173833from main
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user