Skip to content

Commit

Permalink
removed the prestart time from the concise output file
Browse files Browse the repository at this point in the history
  • Loading branch information
Naomi Jarvis committed Dec 2, 2021
1 parent be97f08 commit 257481c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions get_file_time/get_file_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 257481c

Please sign in to comment.