remove unecessary backslashes
This commit is contained in:
parent
bda22baf0c
commit
e4b6eef22d
2 changed files with 2 additions and 3 deletions
|
@ -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)
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue