diff options
Diffstat (limited to 'lib/python/Screens/Setup.py')
| -rw-r--r-- | lib/python/Screens/Setup.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/python/Screens/Setup.py b/lib/python/Screens/Setup.py index f352e8cb..3ff0b76e 100644 --- a/lib/python/Screens/Setup.py +++ b/lib/python/Screens/Setup.py @@ -7,8 +7,6 @@ from Components.Label import Label from Components.Pixmap import Pixmap import xml.dom.minidom -from skin import elementsWithTag - from Tools import XMLTools # FIXME: use resolveFile! @@ -151,7 +149,7 @@ class Setup(ConfigListScreen, Screen): def getSetupTitle(id): xmldata = setupdom.childNodes[0].childNodes - for x in elementsWithTag(xmldata, "setup"): + for x in XMLTools.elementsWithTag(xmldata, "setup"): if x.getAttribute("key") == id: return x.getAttribute("title").encode("UTF-8") raise "unknown setup id '%s'!" % repr(id) |
