We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 980c883 commit 93ad8d4Copy full SHA for 93ad8d4
flow/util/genElapsedTime.py
@@ -34,8 +34,8 @@
34
timePor = line.strip().replace('Elapsed time: ', '')
35
# Remove the units from the time portion
36
timePor = timePor.split('[h:]', 1)[0]
37
- # Ensure that hours, min and seconds are separated by ':' not '.'
38
- timePor = timePor.replace('.',':')
+ # Remove any fraction of a second
+ timePor = timePor.split('.', 1)[0]
39
# Calculate elapsed time that has this format 'h:m:s'
40
timeList = timePor.split(':')
41
if len(timeList) == 2:
0 commit comments