From b843a473bcd888199d83bff6b83a2739c7686a46 Mon Sep 17 00:00:00 2001 From: brent s Date: Sat, 5 May 2018 06:57:56 -0400 Subject: [PATCH] actually, throw a .txt on there so it plays nicely with MIME --- gpg/sksdump.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gpg/sksdump.py b/gpg/sksdump.py index 60bd66c..73f5238 100755 --- a/gpg/sksdump.py +++ b/gpg/sksdump.py @@ -364,7 +364,8 @@ def main(): with open(args['logfile'], 'a') as f: f.write('===== {0} DONE =====\n'.format( 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()))