From: Christopher Allan Webber Date: Sun, 4 Dec 2011 03:59:52 +0000 (-0600) Subject: Most users won't see this but having space after prompt still nice for passwords. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=bb20c179c43cc9aec2cb7a3160dc734e58961609;p=mediagoblin.git Most users won't see this but having space after prompt still nice for passwords. --- diff --git a/mediagoblin/gmg_commands/util.py b/mediagoblin/gmg_commands/util.py index 004f9e49..3e26c53f 100644 --- a/mediagoblin/gmg_commands/util.py +++ b/mediagoblin/gmg_commands/util.py @@ -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