From 4db52fb5a8d9cd4c6fd53e7a9019cf01db72bdeb Mon Sep 17 00:00:00 2001 From: zezinho42 Date: Sun, 24 May 2020 19:33:43 +0200 Subject: Revert previous commit : the app would not start anymore --- src/monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/monitor.py b/src/monitor.py index 4c4b5ef..ac625e6 100644 --- a/src/monitor.py +++ b/src/monitor.py @@ -437,4 +437,4 @@ class Monitor: hours = uptime / 3600 mins = (uptime - (hours * 3600)) / 60 secs = uptime % 60 - return _("%(hours)d hours, %(mins)d minutes, %(secs)d seconds") % {"hours" : (int) hours, "mins" : (int) mins, "secs" : secs} + return _("%(hours)d hours, %(mins)d minutes, %(secs)d seconds") % {"hours" : hours, "mins" : mins, "secs" : secs} -- cgit v1.2.1