Improved error message for ASCIIUsernameValidator.

Follow up to 10bb21e71e.

Co-authored-by: Paolo Melchiorre <paolo@melchiorre.org>
This commit is contained in:
Mariusz Felisiak 2023-02-02 09:01:34 +01:00
parent f3c89744cc
commit c626173833
1 changed files with 2 additions and 2 deletions

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