mirror of https://github.com/django/django.git
[4.2.x] Improved error message for ASCIIUsernameValidator.
Follow up to10bb21e71e
. Co-authored-by: Paolo Melchiorre <paolo@melchiorre.org> Backport ofc626173833
from main
This commit is contained in:
parent
ba7d8ac37d
commit
0b6797eedd
|
@ -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