aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/gmg_commands/import_export.py
diff options
context:
space:
mode:
authorAditi <aditi.iitr@gmail.com>2013-08-25 09:24:13 +0530
committerAditi <aditi.iitr@gmail.com>2013-08-25 09:24:13 +0530
commit7d9dbe32ccf1606d8ffa147bad2ac81e2af66ec6 (patch)
tree32f715388cb985b0de84c6c502e7ec98d7f0d885 /mediagoblin/gmg_commands/import_export.py
parent70cc6eb8f383dcc97aeac22216a9da0d65a09085 (diff)
parente8eec575f3a1d893036ce9b3356d2f56fd15016d (diff)
downloadmediagoblin-7d9dbe32ccf1606d8ffa147bad2ac81e2af66ec6.tar.lz
mediagoblin-7d9dbe32ccf1606d8ffa147bad2ac81e2af66ec6.tar.xz
mediagoblin-7d9dbe32ccf1606d8ffa147bad2ac81e2af66ec6.zip
Merge branch 'master' of git://gitorious.org/mediagoblin/mediagoblin
Diffstat (limited to 'mediagoblin/gmg_commands/import_export.py')
-rw-r--r--mediagoblin/gmg_commands/import_export.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mediagoblin/gmg_commands/import_export.py b/mediagoblin/gmg_commands/import_export.py
index 98ec617d..fbac09f6 100644
--- a/mediagoblin/gmg_commands/import_export.py
+++ b/mediagoblin/gmg_commands/import_export.py
@@ -16,6 +16,7 @@
from mediagoblin import mg_globals
from mediagoblin.db.open import setup_connection_and_db_from_config
+from mediagoblin.gmg_commands import util as commands_util
from mediagoblin.storage.filestorage import BasicFileStorage
from mediagoblin.init import setup_storage, setup_global_and_app_config
@@ -223,6 +224,7 @@ def env_export(args):
'''
Export database and media files to a tar archive
'''
+ commands_util.check_unrecognized_args(args)
if args.cache_path:
if os.path.exists(args.cache_path):
_log.error('The cache directory must not exist '