X-Git-Url: https://scripts.mit.edu/gitweb/wizard.git/blobdiff_plain/522cbd2192383ad5a9cd589d8206900cdc596b1a..ec7c4173ff15aca3fa944ceec50b26318b9cefee:/wizard/install/interactive.py diff --git a/wizard/install/interactive.py b/wizard/install/interactive.py index 37ce807..c8338cd 100644 --- a/wizard/install/interactive.py +++ b/wizard/install/interactive.py @@ -20,10 +20,10 @@ class Controller(object): if getattr(options, name) is not None: continue if not arg.password: - val = self.input.inputbox(arg.help + "\n\n" + humanize(name) + ":") + val = self.input.inputbox(arg.prompt + "\n\n" + humanize(name) + ":") else: while 1: - val = self.input.passwordbox(arg.help + "\n\n" + humanize(name) + " (cursor will not move):") + val = self.input.passwordbox(arg.prompt + "\n\n" + humanize(name) + " (cursor will not move):") val2 = self.input.passwordbox("Please enter the password again (cursor will not move):") if val != val2: self.input.msgbox("Passwords didn't match.")