Added and implemented a rudimentary logger

This commit is contained in:
Daniel Quinn
2016-02-14 16:09:52 +00:00
parent 88acf50fe0
commit 7843ea5037
14 changed files with 142 additions and 36 deletions

View File

@@ -46,7 +46,7 @@ class Command(Renderable, BaseCommand):
target = os.path.join(self.target, document.parseable_file_name)
self._render("Exporting: {}".format(target), 1)
print("Exporting: {}".format(target))
with open(target, "wb") as f:
f.write(GnuPG.decrypted(document.source_file))