mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Merge pull request #132 from loidy/87-libraries-with-apostrophes
Fix libraries sync when jellyfin library has apostrophes in name
This commit is contained in:
commit
05875b507f
1 changed files with 5 additions and 1 deletions
|
@ -293,7 +293,11 @@ def indent(elem, level=0):
|
|||
def write_xml(content, file):
|
||||
with open(file, 'w') as infile:
|
||||
|
||||
content = content.replace("'", '"')
|
||||
# replace apostrophes with double quotes only in xml keys, not texts
|
||||
def replace_apostrophes(match):
|
||||
return match.group(0).replace("'", '"')
|
||||
content = re.sub("<(.*?)>", replace_apostrophes, content)
|
||||
|
||||
content = content.replace('?>', ' standalone="yes" ?>', 1)
|
||||
infile.write(content)
|
||||
|
||||
|
|
Loading…
Reference in a new issue