Merge pull request 'Removed last part from password as it's too long' (#171) from backend/change-pw into main
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #171
This commit is contained in:
cami 2021-07-21 00:23:11 +00:00
commit 01296702d3

View file

@ -55,6 +55,6 @@ def get_random_password():
password += str(first_part[get_random_value(len(first_part)-1)])
password += " " + str(second_part[get_random_value(len(second_part)-1)])
password += " " + str(third_part[get_random_value(len(third_part)-1)])
password += " " + str(forth_part[get_random_value(len(forth_part)-1)])
# password += " " + str(forth_part[get_random_value(len(forth_part)-1)])
return password