aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens/Setup.py')
-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)