Fix libraries sync when jellyfin library has apostrophes in name

This commit is contained in:
Filip Gurbal 2019-11-04 11:30:54 +01:00
parent 3775f4a79a
commit b3b33c902a
1 changed files with 5 additions and 1 deletions

View File

@ -293,7 +293,11 @@ def indent(elem, level=0):
def write_xml(content, file):
with open(file, 'w') as infile:
content = content.replace("'", '"')
def replace_apostrophes(match):
return match.group(0).replace("'", '"')
content = re.sub("<(.*?)>", replace_apostrophes, content)
content = content.replace('?>', ' standalone="yes" ?>', 1)
infile.write(content)