From f92c4258902016a97c6b592477edf2ef2a1c8173 Mon Sep 17 00:00:00 2001 From: James Date: Fri, 24 Feb 2012 14:10:27 -0500 Subject: [PATCH] CC-3345: Enter unusable state when liquidsoap value has an '=' character in it. - fixed --- python_apps/pypo/pypofetch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/pypo/pypofetch.py b/python_apps/pypo/pypofetch.py index e538a9e9f..99c742d15 100644 --- a/python_apps/pypo/pypofetch.py +++ b/python_apps/pypo/pypofetch.py @@ -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('"', '')