]> scripts.mit.edu Git - wizard.git/blobdiff - wizard/install/interactive.py
Improve wording of prompts.
[wizard.git] / wizard / install / interactive.py
index 37ce807aa5611df8d22758cb0f6a20e770b3ade4..c8338cd9b01dfafb36a899b89bd711e6038875ad 100644 (file)
@@ -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.")