aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/HelpMenuList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-02-13 03:47:44 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-02-13 03:47:44 +0100
commita4b8eb676ba549ebe8cf347f15888e51d8914789 (patch)
treef88416c61e96ec26675c8817a6961a74207f0f7b /lib/python/Components/HelpMenuList.py
parentdce87891f204f8e1f7151c4a3ba00b9dd048e795 (diff)
parentc46312d7f5ce4113ece4c33595b7192eccadcb1d (diff)
downloadenigma2-a4b8eb676ba549ebe8cf347f15888e51d8914789.tar.gz
enigma2-a4b8eb676ba549ebe8cf347f15888e51d8914789.zip
Merge branch 'master' of /home/tmbinc/enigma2-git into tmbinc/FixTimingBugs
Conflicts: lib/python/Screens/InfoBarGenerics.py
Diffstat (limited to 'lib/python/Components/HelpMenuList.py')
-rwxr-xr-xlib/python/Components/HelpMenuList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py
index 04815c8d..2a7bd995 100755
--- a/lib/python/Components/HelpMenuList.py
+++ b/lib/python/Components/HelpMenuList.py
@@ -38,7 +38,7 @@ class HelpMenuList(GUIComponent):
entry.append( (actionmap, context, action, name ) )
- if type(help).__name__== 'list':
+ if isinstance(help, list):
self.extendedHelp = True
print "extendedHelpEntry found"
entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 400, 26, 0, 0, help[0]) )