diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2021-03-05 23:42:38 +1100 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2021-03-05 23:42:38 +1100 |
commit | 9bf3bc1944b14252978a6aa2f963effab7208515 (patch) | |
tree | bb6d0fd8e617d486982cf0f75f2d633b08415f50 /mediagoblin/gmg_commands/util.py | |
parent | dec47c7102cf0aa3a4debf002928db8e460c0d71 (diff) | |
download | mediagoblin-9bf3bc1944b14252978a6aa2f963effab7208515.tar.lz mediagoblin-9bf3bc1944b14252978a6aa2f963effab7208515.tar.xz mediagoblin-9bf3bc1944b14252978a6aa2f963effab7208515.zip |
Remove remaining imports/calls to six not automatically removed by pyupgrade.
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 + ' ') |