diff options
| author | Andreas Oberritter <obi@opendreambox.org> | 2010-10-28 20:29:01 +0200 |
|---|---|---|
| committer | Andreas Oberritter <obi@opendreambox.org> | 2010-11-16 17:15:37 +0100 |
| commit | 879d60c88e24c2c3f2aab9dff73192c901f63f31 (patch) | |
| tree | 73bebea0db9c4d22d2de42cc1cd7303b01dc8943 /lib/python/Screens/Wizard.py | |
| parent | 6b59a3472e24f35fcaac669a167b1a4fae207556 (diff) | |
| download | enigma2-879d60c88e24c2c3f2aab9dff73192c901f63f31.tar.gz enigma2-879d60c88e24c2c3f2aab9dff73192c901f63f31.zip | |
use eEnv::resolve() / eEnv.resolve()
Diffstat (limited to 'lib/python/Screens/Wizard.py')
| -rwxr-xr-x | lib/python/Screens/Wizard.py | 4 |
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) |
