Removing some print debugging from import_export

This commit is contained in:
Christopher Allan Webber 2011-08-20 21:59:30 -05:00
parent c02bea6fb9
commit cc601bbd58

View File

@ -68,9 +68,6 @@ def _import_media(db, args):
media_file.write( media_file.write(
media_cache.get_file(path, mode='rb').read()) media_cache.get_file(path, mode='rb').read())
print(media_file)
print(entry)
print "\n== Media imported ==\n" print "\n== Media imported ==\n"
@ -85,8 +82,6 @@ def _import_database(db, args):
'-d', db.name, '-d', db.name,
os.path.join(args._cache_path['database'], db.name)]) os.path.join(args._cache_path['database'], db.name)])
print p
p.wait() p.wait()
print "\n== Database imported ==\n" print "\n== Database imported ==\n"
@ -218,9 +213,6 @@ def _export_media(db, args):
mc_file.write( mc_file.write(
mg_globals.public_store.get_file(path, mode='rb').read()) mg_globals.public_store.get_file(path, mode='rb').read())
print(mc_file)
print(entry)
print "\n== Media exported ==\n" print "\n== Media exported ==\n"