From f219063640562cbbea9162e0554b956502c55f61 Mon Sep 17 00:00:00 2001 From: taxicomics <168220579+taxicomics@users.noreply.github.com> Date: Tue, 14 May 2024 09:18:55 +0200 Subject: [PATCH] Update CommandLineGenerator.py clarified the input texts --- CommandLineGenerator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommandLineGenerator.py b/CommandLineGenerator.py index cd6922b..72c07d8 100644 --- a/CommandLineGenerator.py +++ b/CommandLineGenerator.py @@ -23,7 +23,7 @@ def hash_and_average(*values): def main(): username = input("Enter your username: ") password_category = input("Enter the password category (e.g., email, website): ") - password = hash_and_average(username, password_category, input("Enter your password: ")) + password = hash_and_average(username, password_category, input("Enter your main password: ")) print(f"Generated password: {password}")