Changeset 550 in tmcsimulator for trunk/src/python/unifiedlogger/logging_service.py
- Timestamp:
- 12/26/2019 03:10:19 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/python/unifiedlogger/logging_service.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/python/unifiedlogger/logging_service.py
r471 r550 9 9 m, s = divmod(int(seconds), 60) 10 10 h, m = divmod(m, 60) 11 return "% d:%02d:%02d" % (h, m, s)11 return "%02d:%02d:%02d" % (h, m, s) 12 12 13 13 # Load the sim time file and extract the seconds */
Note: See TracChangeset
for help on using the changeset viewer.
