diff --git a/python_apps/pypo/recorder.py b/python_apps/pypo/recorder.py index 19f91621e..4096ed767 100644 --- a/python_apps/pypo/recorder.py +++ b/python_apps/pypo/recorder.py @@ -213,7 +213,8 @@ class Recorder(Thread): next_show = getDateTimeObj(start_time) delta = next_show - tnow - out = delta.seconds + s = '%s.%s' % (delta.seconds, delta.microseconds) + out = float(s) if out < 5: self.logger.debug("Shows %s", self.shows_to_record)