X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FWizard.py;h=61e1d5ef2a827c7e2cfef9cd4c537d1c6ec59df7;hp=a752d31cf66b31631e7e96062ddd5534654cb851;hb=80a99b08bd6e0932a420e805d928dc5ae5b80f61;hpb=d04e6435efecf42a192a4f6c71dca9a1a053d5fb diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index a752d31..61e1d5e 100755 --- a/lib/python/Screens/Wizard.py +++ b/lib/python/Screens/Wizard.py @@ -10,7 +10,7 @@ from Components.ActionMap import NumberActionMap from Components.MenuList import MenuList from Components.ConfigList import ConfigList from Components.Sources.List import List -from enigma import eTimer +from enigma import eTimer, eEnv from xml.sax import make_parser from xml.sax.handler import ContentHandler @@ -178,7 +178,7 @@ class Wizard(Screen): parser.setContentHandler(wizardHandler) for xmlfile in self.xmlfile: if xmlfile[0] != '/': - parser.parse('/usr/share/enigma2/' + xmlfile) + parser.parse(eEnv.resolve('${datadir}/enigma2/') + xmlfile) else: parser.parse(xmlfile)