aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-08-30 23:52:33 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-08-30 23:52:33 +0000
commit7581b23a6bc4823981e973c2cfcc33fbed171122 (patch)
treee7c25f559bf807805fc9c6f0386e4c01c8409c02 /lib
parentf47d06efc863945909f6095eae5d88c755168fd6 (diff)
downloadenigma2-7581b23a6bc4823981e973c2cfcc33fbed171122.tar.gz
enigma2-7581b23a6bc4823981e973c2cfcc33fbed171122.zip
bug
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Screens/Setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/python/Screens/Setup.py b/lib/python/Screens/Setup.py
index c643c750..0886ddf1 100644
--- a/lib/python/Screens/Setup.py
+++ b/lib/python/Screens/Setup.py
@@ -15,14 +15,13 @@ from Tools import XMLTools
# read the setupmenu
try:
# first we search in the current path
- setupfile = file('data/menu.xml', 'r')
+ setupfile = file('data/setup.xml', 'r')
except:
# if not found in the current path, we use the global datadir-path
setupfile = file('/usr/share/enigma2/setup.xml', 'r')
setupdom = xml.dom.minidom.parseString(setupfile.read())
setupfile.close()
-
def getValbyAttr(x, attr):
for p in range(x.attributes.length):
a = x.attributes.item(p)