diff options
Diffstat (limited to 'mediagoblin/gmg_commands/util.py')
-rw-r--r-- | mediagoblin/gmg_commands/util.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mediagoblin/gmg_commands/util.py b/mediagoblin/gmg_commands/util.py index f27a9535..15300ace 100644 --- a/mediagoblin/gmg_commands/util.py +++ b/mediagoblin/gmg_commands/util.py @@ -18,8 +18,6 @@ from mediagoblin import app import getpass -import six - def setup_app(args): """ @@ -35,7 +33,7 @@ def prompt_if_not_set(variable, text, password=False): """ if variable is None: if not password: - variable = six.moves.input(text + ' ') + variable = input(text + ' ') else: variable=getpass.getpass(text + ' ') |