Skip to content

Commit 217c708

Browse files
committed
Sort elapsed times
Signed-off-by: Matt Liberty <[email protected]>
1 parent 378a4dc commit 217c708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/util/genElapsedTime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
sys.exit(1)
2424

2525
# Loop on all log files in the directory
26-
for f in list(pathlib.Path(args.logDir).glob('**/[0-9]_*.log')):
26+
for f in sorted(pathlib.Path(args.logDir).glob('**/[0-9]_*.log')):
2727
# Extract Elapsed Time line from log file
2828
for line in open(str(f)):
2929
elapsedTime = 0

0 commit comments

Comments
 (0)