Now the exporter sets the proper dates

This commit is contained in:
Daniel Quinn 2016-01-23 03:22:15 +00:00
parent 0035e8d9e1
commit 0eb0c88d3d

View File

@ -48,10 +48,8 @@ class Command(BaseCommand):
with open(target, "wb") as f: with open(target, "wb") as f:
f.write(GnuPG.decrypted(document.pdf)) f.write(GnuPG.decrypted(document.pdf))
os.utime(target, times=( t = int(time.mktime(document.created.timetuple()))
int(time.mktime(document.created.timetuple())), os.utime(target, times=(t, t))
int(time.mktime(document.modified.timetuple()))
))
def _render(self, text, verbosity): def _render(self, text, verbosity):
if self.verbosity >= verbosity: if self.verbosity >= verbosity: