From 42bf96e44afa0694e5f208c1ad8e239d8db8bb61 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Fri, 17 May 2019 18:54:03 +0200 Subject: [PATCH] Fix the setup wizard (fixes #51) --- setup_wizard/wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): ")