Private
Public Access
1
0

Merge branch 'release/v22.1.29'

This commit is contained in:
2024-08-21 18:07:48 +02:00
2 changed files with 3 additions and 0 deletions

Binary file not shown.

View File

@@ -480,6 +480,9 @@ def totaltime_sec_to_string(totaltime, shorten=False):
if np.isnan(totaltime):
return ''
if totaltime < 0:
totaltime = -totaltime
fmt = '{H:02}:{M:02}:{S:02}.{t}'
if shorten:
fmt = '{H}:{M:02}:{S:02}'