diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2009-10-05 17:50:21 +0200 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2009-10-05 17:50:21 +0200 |
| commit | c44754915a36c5c06f1089852bcf6d16ac7ae73c (patch) | |
| tree | f567b3e741587bb26f23c010ff95277567f5a71d /lib/python/Screens/HelpMenu.py | |
| parent | 8d7ab3b08ec975b1acf8e65478ed38613d0b24cc (diff) | |
| download | enigma2-c44754915a36c5c06f1089852bcf6d16ac7ae73c.tar.gz enigma2-c44754915a36c5c06f1089852bcf6d16ac7ae73c.zip | |
fix possible crash
Diffstat (limited to 'lib/python/Screens/HelpMenu.py')
| -rw-r--r-- | lib/python/Screens/HelpMenu.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/HelpMenu.py b/lib/python/Screens/HelpMenu.py index 74882a35..305e3555 100644 --- 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 |
