diff options
author | Will Kahn-Greene <willg@bluesock.org> | 2012-06-03 15:53:34 -0400 |
---|---|---|
committer | Will Kahn-Greene <willg@bluesock.org> | 2012-06-03 15:53:34 -0400 |
commit | a855e92a985a9bdc9c5062cad268eba3d8e19f84 (patch) | |
tree | c238588282e361e8dccc77b94aa8e3b1d54c0c45 /mediagoblin/gmg_commands/import_export.py | |
parent | 349f5b19f768f4880b544732c77991ef7bdab6c8 (diff) | |
download | mediagoblin-a855e92a985a9bdc9c5062cad268eba3d8e19f84.tar.lz mediagoblin-a855e92a985a9bdc9c5062cad268eba3d8e19f84.tar.xz mediagoblin-a855e92a985a9bdc9c5062cad268eba3d8e19f84.zip |
Fix problems from pyflakes output
Diffstat (limited to 'mediagoblin/gmg_commands/import_export.py')
-rw-r--r-- | mediagoblin/gmg_commands/import_export.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mediagoblin/gmg_commands/import_export.py b/mediagoblin/gmg_commands/import_export.py index 9d79afb4..72ebd8a8 100644 --- a/mediagoblin/gmg_commands/import_export.py +++ b/mediagoblin/gmg_commands/import_export.py @@ -61,8 +61,7 @@ def _import_media(db, args): args._cache_path['media']) # TODO: Add import of queue files - queue_cache = BasicFileStorage( - args._cache_path['queue']) + queue_cache = BasicFileStorage(args._cache_path['queue']) for entry in db.MediaEntry.find(): for name, path in entry.media_files.items(): @@ -203,8 +202,7 @@ def _export_media(db, args): args._cache_path['media']) # TODO: Add export of queue files - queue_cache = BasicFileStorage( - args._cache_path['queue']) + queue_cache = BasicFileStorage(args._cache_path['queue']) for entry in db.MediaEntry.find(): for name, path in entry.media_files.items(): |