aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-02-13 23:54:25 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-02-13 23:54:25 +0100
commit7b5f45dec47f8472cc699a72949c52e6e5b2c279 (patch)
treebcde146855c992c6656eb89d93c09087ef8cd03d /lib/python/Components
parentdc88bc9542802a1180b53142be5f777d75c6c22e (diff)
downloadenigma2-7b5f45dec47f8472cc699a72949c52e6e5b2c279.tar.gz
enigma2-7b5f45dec47f8472cc699a72949c52e6e5b2c279.zip
rename list -> helplist
Diffstat (limited to 'lib/python/Components')
-rwxr-xr-xlib/python/Components/HelpMenuList.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py
index 2a7bd995..ddf871a7 100755
--- a/lib/python/Components/HelpMenuList.py
+++ b/lib/python/Components/HelpMenuList.py
@@ -7,7 +7,7 @@ from Tools.KeyBindings import queryKeyBinding, getKeyDescription
# [ ( actionmap, context, [(action, help), (action, help), ...] ), (actionmap, ... ), ... ]
class HelpMenuList(GUIComponent):
- def __init__(self, list, callback):
+ def __init__(self, helplist, callback):
GUIComponent.__init__(self)
self.onSelChanged = [ ]
self.l = eListboxPythonMultiContent()
@@ -15,7 +15,7 @@ class HelpMenuList(GUIComponent):
self.extendedHelp = False
l = [ ]
- for (actionmap, context, actions) in list:
+ for (actionmap, context, actions) in helplist:
for (action, help) in actions:
entry = [ ]