Fix truncated log timestamps in at least some cases.
[dcpomatic.git] / hacks / analog.py
index 8a43518bd87b01c7b7b5401efe5d90b18c6ba274..760f58ea0c2189607a4025dd5766d75c6214662a 100644 (file)
@@ -29,7 +29,7 @@ def find_nth(haystack, needle, n):
 
 # Representation of time in seconds and microseconds
 class Time:
-    def __init__(self, s = 0, m = 0):
+    def __init__(self, s=0, m=0):
         self.seconds = s
         self.microseconds = m