aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/gmg_commands/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'mediagoblin/gmg_commands/util.py')
-rw-r--r--mediagoblin/gmg_commands/util.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/mediagoblin/gmg_commands/util.py b/mediagoblin/gmg_commands/util.py
index 8b057996..63e39ca9 100644
--- a/mediagoblin/gmg_commands/util.py
+++ b/mediagoblin/gmg_commands/util.py
@@ -17,7 +17,6 @@
from mediagoblin import app
import getpass
-import argparse
def setup_app(args):
@@ -39,9 +38,3 @@ def prompt_if_not_set(variable, text, password=False):
variable=getpass.getpass(text + u' ')
return variable
-
-
-def check_unrecognized_args(args):
- if args[1]:
- parser = argparse.ArgumentParser()
- parser.error('unrecognized arguments: {}'.format(args[1]))