Update netbox/utilities/password_validation.py

Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
This commit is contained in:
Arthur Hanson 2024-08-30 10:36:20 -07:00 committed by GitHub
parent d0b2f0c5a1
commit 37b724c6bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@ class NumericAlphaPasswordValidator:
if not any(char.islower() for char in password):
raise ValidationError(
_("Password should have at least one lowercase letter"),
_("Password must have at least one lowercase letter."),
)
def get_help_text(self):