X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FWizard.py;h=c06626e5b5693538442f122ab89c7535119a6023;hp=b8722ede44527a94d1a09b4d4dbd8c06dcd6c2ed;hb=7407ccb796e6079fee5d010aceab5e6c606faf01;hpb=7da3c6b5bc7f55569e214a02645ea69fd6662dad diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index b8722ed..c06626e 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 @@ -181,7 +181,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)