git.cweiske.de
/
enigma2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d7ab3b
)
fix possible crash
author
Fraxinas
<
[email protected]
>
Mon, 5 Oct 2009 15:50:21 +0000
(17:50 +0200)
committer
Fraxinas
<
[email protected]
>
Mon, 5 Oct 2009 15:50:21 +0000
(17:50 +0200)
lib/python/Screens/HelpMenu.py
patch
|
blob
|
history
diff --git
a/lib/python/Screens/HelpMenu.py
b/lib/python/Screens/HelpMenu.py
index 74882a3580d8d3feab41b8655ffac207f096baca..305e35555ad549d33bf4dadf970aac51df7d2142 100644
(file)
--- a/
lib/python/Screens/HelpMenu.py
+++ b/
lib/python/Screens/HelpMenu.py
@@
-25,7
+25,8
@@
class HelpMenu(Screen, Rc):
def SelectionChanged(self):
self.clearSelectedKeys()
selection = self["list"].getCurrent()
- selection = selection[3]
+ if selection:
+ selection = selection[3]
#arrow = self["arrowup"]
print "selection:", selection