diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2009-02-15 22:18:33 +0100 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2009-02-15 22:18:33 +0100 |
| commit | c2217d20163573e3a062463bfe0522e4f70b1fa4 (patch) | |
| tree | 3c0087bc9394e463089aebdba1dff5255b02d685 /lib/python/Components/HelpMenuList.py | |
| parent | b771b6a170124c2721cab8edc053dab5ecc6ef3f (diff) | |
| parent | 710f40bb42dbf86b53a2e1b4839af6f2d5be381d (diff) | |
| download | enigma2-c2217d20163573e3a062463bfe0522e4f70b1fa4.tar.gz enigma2-c2217d20163573e3a062463bfe0522e4f70b1fa4.zip | |
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'lib/python/Components/HelpMenuList.py')
| -rwxr-xr-x | lib/python/Components/HelpMenuList.py | 4 |
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 = [ ] |
