From 6c72cdfe8291f5e8af38ec8a6d9f867bc614c2fa Mon Sep 17 00:00:00 2001 From: Evgeny Date: Fri, 19 Jun 2020 13:40:33 -0500 Subject: [PATCH] json trace normalizing fix Change-Id: Ia5987fcd3e08808953534fa3ded2df0b17e0e87a --- bin/tblextr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tblextr.py b/bin/tblextr.py index 26f4f424f3..1c1b4b9a08 100755 --- a/bin/tblextr.py +++ b/bin/tblextr.py @@ -563,7 +563,7 @@ dbfile = '' csvfile = '' begin_ts_file = indir + '/begin_ts_file.txt' -if os.path.isfile(file_name): +if os.path.isfile(begin_ts_file): with open(begin_ts_file, mode='r') as fd: START_US=int(fd.readline()) / 1000 print('Appilcation START-ts found (' + START_US + 'us)')