1
0
mirror of https://github.com/django/django.git synced 2025-03-09 00:42:40 +00:00

[4.2.x] Improved error message for ASCIIUsernameValidator.

Follow up to 10bb21e71e3668f770493e2af0d0e0271830f7a3.

Co-authored-by: Paolo Melchiorre <paolo@melchiorre.org>

Backport of c626173833784c86920b448793ac45005af4c058 from main
This commit is contained in:
Mariusz Felisiak 2023-02-02 09:01:34 +01:00
parent ba7d8ac37d
commit 0b6797eedd

View File

@ -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