We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Function validate user() works incorrectly, because it doesn't match dots and underscores and the start of the username.
validate_user("blue.kale", 3) # True
validate_user(".blue.kale", 3) # Currently True, should be False
validate_user("red_quinoa", 4) # True
validate_user("_red_quinoa", 4) # Currently True, should be False
The text was updated successfully, but these errors were encountered:
Owerwrite regular conndions for correct working
fb0425f
Closed google#35434 Updated validations.py python script. Fixed the behavior of validate_user function in validations.py.
Successfully merging a pull request may close this issue.
Function validate user() works incorrectly, because it doesn't match dots and underscores and the start of the username.
validate_user("blue.kale", 3) # True
validate_user(".blue.kale", 3) # Currently True, should be False
validate_user("red_quinoa", 4) # True
validate_user("_red_quinoa", 4) # Currently True, should be False
The text was updated successfully, but these errors were encountered: