also prefix the label
This commit is contained in:
parent
5ec53e0326
commit
c2c5743611
1 changed files with 1 additions and 1 deletions
|
@ -1061,7 +1061,7 @@ class WriteKodiDB():
|
||||||
xbmcvfs.mkdir(libraryPath)
|
xbmcvfs.mkdir(libraryPath)
|
||||||
nodefile = os.path.join(libraryPath, "index.xml")
|
nodefile = os.path.join(libraryPath, "index.xml")
|
||||||
root = Element("node", {"order":"1"})
|
root = Element("node", {"order":"1"})
|
||||||
SubElement(root, "label").text = tagname
|
SubElement(root, "label").text = "Emby - " + tagname
|
||||||
SubElement(root, "icon").text = "DefaultMovies.png"
|
SubElement(root, "icon").text = "DefaultMovies.png"
|
||||||
try:
|
try:
|
||||||
ET.ElementTree(root).write(nodefile, xml_declaration=True)
|
ET.ElementTree(root).write(nodefile, xml_declaration=True)
|
||||||
|
|
Loading…
Reference in a new issue