You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Issue is with the behavior of "validate_user" function in validations.py.
This script should validate usernames if they start with a letter only.
to fix this issue change:
if not re.match('^[a-z0-9._]*$', username) AND if username[0].isnumeric():
it should be:
if not re.match(r'^[A-Za-z0-9._]*$', username)
if not username[0].isalpha():