CC-3635: Pypo needs subsecond accuracy for start time

-Done
This commit is contained in:
Martin Konecny 2012-04-12 17:21:42 -04:00
parent a594569ddc
commit fe3dfb6b0c
1 changed files with 1 additions and 1 deletions

View File

@ -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):