diff options
Diffstat (limited to 'src/Watcher/time_operations.py')
-rwxr-xr-x | src/Watcher/time_operations.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Watcher/time_operations.py b/src/Watcher/time_operations.py index 1df4922..5042983 100755 --- a/src/Watcher/time_operations.py +++ b/src/Watcher/time_operations.py @@ -66,4 +66,17 @@ def convert_into_sec(t): sec = int(t[0:2])*3600 + int(t[3:5])*60 + int(t[6::]) return sec +def convert(sec): + sec = int(sec) + sec = sec % (24 * 3600) + hr = sec // 3600 + sec %= 3600 + mn = sec // 60 + sec %= 60 + hr = str(hr).zfill(2) + mn = str(mn).zfill(2) + sec = str(sec).zfill(2) + + result = hr + ":" + mn + ":" + sec + return result |