Removing some print debugging from import_export
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 21 Aug 2011 02:59:30 +0000 (21:59 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 21 Aug 2011 02:59:46 +0000 (21:59 -0500)
mediagoblin/gmg_commands/import_export.py

index fd32136c74069aeac39997acf5d87da3fb71258a..b00fb1cb5770fc9fb2b46bddecbf4bc7816c089b 100644 (file)
@@ -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"