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:
f.write(GnuPG.decrypted(document.pdf))
os.utime(target, times=(
int(time.mktime(document.created.timetuple())),
int(time.mktime(document.modified.timetuple()))
))
t = int(time.mktime(document.created.timetuple()))
os.utime(target, times=(t, t))
def _render(self, text, verbosity):
if self.verbosity >= verbosity: