From 2000072a3437a59fbc9148c913fb67f731d48ca9 Mon Sep 17 00:00:00 2001 From: cami Date: Wed, 21 Jul 2021 02:19:47 +0200 Subject: [PATCH] Removed last part from password as it's too long --- backend/src/password_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/password_util.py b/backend/src/password_util.py index 80852eb..189488c 100644 --- a/backend/src/password_util.py +++ b/backend/src/password_util.py @@ -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