Update CommandLineGenerator.py

clarified the input texts
This commit is contained in:
taxicomics 2024-05-14 09:18:55 +02:00 committed by GitHub
parent fc0c388250
commit f219063640
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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}")