diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-12-03 21:59:52 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-12-03 21:59:52 -0600 |
commit | bb20c179c43cc9aec2cb7a3160dc734e58961609 (patch) | |
tree | b1c0d24788c1f5af5e13481ff583cd2352b32b3e | |
parent | bbac7663f4b05430592ac5d39f056029dc11db92 (diff) | |
download | mediagoblin-bb20c179c43cc9aec2cb7a3160dc734e58961609.tar.lz mediagoblin-bb20c179c43cc9aec2cb7a3160dc734e58961609.tar.xz mediagoblin-bb20c179c43cc9aec2cb7a3160dc734e58961609.zip |
Most users won't see this but having space after prompt still nice for passwords.
-rw-r--r-- | mediagoblin/gmg_commands/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |