aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Wizard.py
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-11-17 17:20:04 +0100
committerAndreas Oberritter <obi@opendreambox.org>2010-11-17 17:20:04 +0100
commit2b49c99dcd77e5c65d9563b38ed25e3153144818 (patch)
tree5cefbc8c84b91fbeef21e6b86c42c0e70f3fc121 /lib/python/Screens/Wizard.py
parenta369ff24e35fce27bfc9fccf7b284b03533bb4c3 (diff)
parenta8682faafcab6004621a4848d7855c70b55f0bce (diff)
downloadenigma2-2b49c99dcd77e5c65d9563b38ed25e3153144818.tar.gz
enigma2-2b49c99dcd77e5c65d9563b38ed25e3153144818.zip
Merge branch 'obi/master' into experimental
Diffstat (limited to 'lib/python/Screens/Wizard.py')
-rwxr-xr-xlib/python/Screens/Wizard.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py
index a752d31c..61e1d5ef 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)