CC-3345: Enter unusable state when liquidsoap value has an '='
character in it. - fixed
This commit is contained in:
parent
2f689ed583
commit
f92c425890
|
@ -134,7 +134,7 @@ class PypoFetch(Thread):
|
|||
# if empty line
|
||||
if not line:
|
||||
continue
|
||||
key, value = line.split('=')
|
||||
key, value = line.split(' = ')
|
||||
key = key.strip()
|
||||
value = value.strip()
|
||||
value = value.replace('"', '')
|
||||
|
|
Loading…
Reference in New Issue