From 05c3fcc825c1df5ab70a71f7f69f7e182cae62bf Mon Sep 17 00:00:00 2001 From: brent s Date: Wed, 13 Sep 2017 18:44:23 -0400 Subject: [PATCH] whoops --- gpg/sksdump.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpg/sksdump.py b/gpg/sksdump.py index f349abe..c7008b8 100755 --- a/gpg/sksdump.py +++ b/gpg/sksdump.py @@ -203,7 +203,7 @@ def main(): if getpass.getuser() not in ('root', sks['user']): exit('ERROR: You must be root or {0}!'.format(sks['user'])) with open(sks['logfile'], 'a') as f: - f.write('===== {0} STARTING ====='.format(str(datetime.datetime.utcnow()))) + f.write('===== {0} STARTING =====\n'.format(str(datetime.datetime.utcnow()))) if not args['nodump']: dumpDB() if not args['nocompress']: @@ -211,7 +211,7 @@ def main(): if not args['nosync']: syncDB() with open(sks['logfile'], 'a') as f: - f.write('===== {0} DONE ====='.format(str(datetime.datetime.utcnow()))) + f.write('===== {0} DONE =====\n'.format(str(datetime.datetime.utcnow()))) if __name__ == '__main__':