aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-08-20 21:59:30 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-08-20 21:59:46 -0500
commitcc601bbd58b76ce6ee1f7b0b1e065fcd3d6ff217 (patch)
treea12e7cb5ce817efadae5b8f4875af9d6285b4c1f
parentc02bea6fb9a87e4cbcb8d77912a92b2226b4eceb (diff)
downloadmediagoblin-cc601bbd58b76ce6ee1f7b0b1e065fcd3d6ff217.tar.lz
mediagoblin-cc601bbd58b76ce6ee1f7b0b1e065fcd3d6ff217.tar.xz
mediagoblin-cc601bbd58b76ce6ee1f7b0b1e065fcd3d6ff217.zip
Removing some print debugging from import_export
-rw-r--r--mediagoblin/gmg_commands/import_export.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/mediagoblin/gmg_commands/import_export.py b/mediagoblin/gmg_commands/import_export.py
index fd32136c..b00fb1cb 100644
--- a/mediagoblin/gmg_commands/import_export.py
+++ b/mediagoblin/gmg_commands/import_export.py
@@ -68,9 +68,6 @@ def _import_media(db, args):
media_file.write(
media_cache.get_file(path, mode='rb').read())
- print(media_file)
- print(entry)
-
print "\n== Media imported ==\n"
@@ -85,8 +82,6 @@ def _import_database(db, args):
'-d', db.name,
os.path.join(args._cache_path['database'], db.name)])
- print p
-
p.wait()
print "\n== Database imported ==\n"
@@ -218,9 +213,6 @@ def _export_media(db, args):
mc_file.write(
mg_globals.public_store.get_file(path, mode='rb').read())
- print(mc_file)
- print(entry)
-
print "\n== Media exported ==\n"