CC-3635: Pypo needs subsecond accuracy for start time
-Done
This commit is contained in:
parent
a594569ddc
commit
fe3dfb6b0c
|
@ -318,7 +318,7 @@ class PypoPush(Thread):
|
|||
|
||||
|
||||
def date_interval_to_seconds(self, interval):
|
||||
return (interval.microseconds + (interval.seconds + interval.days * 24 * 3600) * 10**6) / 10**6
|
||||
return (interval.microseconds + (interval.seconds + interval.days * 24 * 3600) * 10**6) / float(10**6)
|
||||
|
||||
def push_to_liquidsoap(self, event_chain):
|
||||
|
||||
|
|
Loading…
Reference in New Issue