From 257481cd3f55ba240d8491f220a6bf75bf822251 Mon Sep 17 00:00:00 2001 From: Naomi Jarvis Date: Thu, 2 Dec 2021 08:15:59 -0500 Subject: [PATCH] removed the prestart time from the concise output file --- get_file_time/get_file_time.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/get_file_time/get_file_time.py b/get_file_time/get_file_time.py index f6cf72f..a648d70 100644 --- a/get_file_time/get_file_time.py +++ b/get_file_time/get_file_time.py @@ -227,11 +227,10 @@ def geteventtime(filename): dt_thisfile = datetime.fromtimestamp(thisfile_timestamp) -print('start of run '+dt_runstart.strftime("%Y-%m-%d %H:%M:%S")) +print('prestart '+dt_runstart.strftime("%Y-%m-%d %H:%M:%S")) print('start of file '+dt_thisfile.strftime("%Y-%m-%d %H:%M:%S")) if outf: - outf.write(dt_runstart.strftime("%Y-%m-%d %H:%M:%S")+'\n') outf.write(dt_thisfile.strftime("%Y-%m-%d %H:%M:%S")+'\n') if usedrcdb: outf.write('RCDB\n')