CC-3428: liquidsoap seems to have troubles with this file
-need to escape double quotes not single :P
This commit is contained in:
parent
a09a31bc88
commit
92f057593e
|
@ -298,7 +298,7 @@ def test_file_playability(pathname):
|
||||||
"""
|
"""
|
||||||
liquidsoap_found = subprocess.call("which liquidsoap", shell=True)
|
liquidsoap_found = subprocess.call("which liquidsoap", shell=True)
|
||||||
if liquidsoap_found == 0:
|
if liquidsoap_found == 0:
|
||||||
return_code = subprocess.call("liquidsoap -r \"%s\"" % pathname.replace("'", "\\'"), shell=True)
|
return_code = subprocess.call("liquidsoap -r \"%s\"" % pathname.replace('"', '\\"'), shell=True)
|
||||||
else:
|
else:
|
||||||
return_code = 0
|
return_code = 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue