minor detail changed

This commit is contained in:
Marcel van der Veldt 2015-05-07 10:33:35 +02:00
parent 4d0d863a42
commit 0cacd3ee87
1 changed files with 5 additions and 1 deletions

View File

@ -10,6 +10,7 @@ import xbmcvfs
import json import json
import os import os
import shutil import shutil
#import common elementree because cElementree has issues with kodi
import xml.etree.ElementTree as etree import xml.etree.ElementTree as etree
import Utils as utils import Utils as utils
@ -37,7 +38,10 @@ class VideoNodes():
etree.SubElement(root, "icon").text = "special://home/addons/plugin.video.emby/icon.png" etree.SubElement(root, "icon").text = "special://home/addons/plugin.video.emby/icon.png"
path = "library://video/Emby - %s/"%tagname path = "library://video/Emby - %s/"%tagname
WINDOW.setProperty("Emby.nodes.%s.index" %str(windowPropId),path) WINDOW.setProperty("Emby.nodes.%s.index" %str(windowPropId),path)
etree.ElementTree(root).write(nodefile) try:
etree.ElementTree(root).write(nodefile, xml_declaration=True)
except:
etree.ElementTree(root).write(nodefile)
#create tag node - all items #create tag node - all items
nodefile = os.path.join(libraryPath, tagname + "_all.xml") nodefile = os.path.join(libraryPath, tagname + "_all.xml")