remove unecessary backslashes

This commit is contained in:
Martin Konecny 2013-05-17 14:52:49 -04:00
parent bda22baf0c
commit e4b6eef22d
2 changed files with 2 additions and 3 deletions

View file

@ -510,7 +510,6 @@ class PypoFetch(Thread):
Currently we are checking every POLL_INTERVAL seconds. Currently we are checking every POLL_INTERVAL seconds.
""" """
message = self.fetch_queue.get(block=True, message = self.fetch_queue.get(block=True,
timeout=self.listener_timeout) timeout=self.listener_timeout)
self.handle_message(message) self.handle_message(message)

View file

@ -13,8 +13,8 @@ from threading import Lock
def create_liquidsoap_annotation(media): def create_liquidsoap_annotation(media):
# We need liq_start_next value in the annotate. That is the value that # We need liq_start_next value in the annotate. That is the value that
# controls overlap duration of crossfade. # controls overlap duration of crossfade.
return ('annotate:media_id="%s",liq_start_next="0",liq_fade_in="%s",' + \ return ('annotate:media_id="%s",liq_start_next="0",liq_fade_in="%s",' +
'liq_fade_out="%s",liq_cue_in="%s",liq_cue_out="%s",' + \ 'liq_fade_out="%s",liq_cue_in="%s",liq_cue_out="%s",' +
'schedule_table_id="%s",replay_gain="%s dB":%s') % \ 'schedule_table_id="%s",replay_gain="%s dB":%s') % \
(media['id'], (media['id'],
float(media['fade_in']) / 1000, float(media['fade_in']) / 1000,