Most users won't see this but having space after prompt still nice for passwords.

This commit is contained in:
Christopher Allan Webber 2011-12-03 21:59:52 -06:00
parent bbac7663f4
commit bb20c179c4

View File

@ -35,6 +35,6 @@ def prompt_if_not_set(variable, text, password=False):
if not password:
variable=raw_input(text + u' ')
else:
variable=getpass.getpass(text)
variable=getpass.getpass(text + u' ')
return variable