graphics/DebugDataConsumer.py
changeset 1737 a39c2918c015
parent 1736 7e61baa047f0
child 1749 d73b64672238
--- a/graphics/DebugDataConsumer.py	Mon Aug 14 23:27:15 2017 +0300
+++ b/graphics/DebugDataConsumer.py	Mon Aug 14 23:34:22 2017 +0300
@@ -74,10 +74,10 @@
     not_null = False
 
     for val, format in [
-            (int(microseconds) / DAY, "%dd"),                # Days
-            ((int(microseconds) % DAY) / HOUR, "%dh"),       # Hours
-            ((int(microseconds) % HOUR) / MINUTE, "%dm"),    # Minutes
-            ((int(microseconds) % MINUTE) / SECOND, "%ds")]: # Seconds
+            (int(microseconds) / DAY, "%dd"),                 # Days
+            ((int(microseconds) % DAY) / HOUR, "%dh"),        # Hours
+            ((int(microseconds) % HOUR) / MINUTE, "%dm"),     # Minutes
+            ((int(microseconds) % MINUTE) / SECOND, "%ds")]:  # Seconds
 
         # Add value to TIME literal if value is non-null or another non-null
         # value have already be found