actually, throw a .txt on there so it plays nicely with MIME

This commit is contained in:
brent s 2018-05-05 06:57:56 -04:00
parent 2d0e15f811
commit b843a473bc

View File

@ -364,7 +364,8 @@ def main():
with open(args['logfile'], 'a') as f: with open(args['logfile'], 'a') as f:
f.write('===== {0} DONE =====\n'.format( f.write('===== {0} DONE =====\n'.format(
str(datetime.datetime.utcnow()))) str(datetime.datetime.utcnow())))
with open(os.path.join(args['destdir'], 'LAST_COMPLETED_DUMP'), 'w') as f: with open(os.path.join(args['destdir'], 'LAST_COMPLETED_DUMP.txt'),
'w') as f:
f.write(str(datetime.datetime.utcnow())) f.write(str(datetime.datetime.utcnow()))