diff --git a/setup_wizard/wizard.py b/setup_wizard/wizard.py index e38d186..dfc7199 100644 --- a/setup_wizard/wizard.py +++ b/setup_wizard/wizard.py @@ -28,7 +28,7 @@ def main() -> None: print("Your identity will be @{username}@{domain}") dat["domain"] = prompt("domain: ") dat["username"] = prompt("username: ") - dat["password"] = bcrypt.hashpw( + dat["pass"] = bcrypt.hashpw( prompt("password: ", is_password=True).encode(), bcrypt.gensalt() ).decode() dat["name"] = prompt("name (e.g. John Doe): ")