diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2008-12-02 21:44:34 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2008-12-02 21:44:34 +0100 |
| commit | d630d7d7715a6fbc97c1d322ceb2bc0452ab0740 (patch) | |
| tree | a04a5dc528e679ddc22bfeea8ab6b87dd950923d /lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py | |
| parent | bcd91e419bd46b9194459a80eb8c6454250eb307 (diff) | |
| parent | 5f5bf69803be617adb7364f61c6eed9fd32d6d14 (diff) | |
| download | enigma2-d630d7d7715a6fbc97c1d322ceb2bc0452ab0740.tar.gz enigma2-d630d7d7715a6fbc97c1d322ceb2bc0452ab0740.zip | |
Merge branch 'master' into enigma2_rel25
Diffstat (limited to 'lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py')
| -rw-r--r-- | lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py index 1af90f13..7f422c96 100644 --- a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py +++ b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py @@ -489,7 +489,8 @@ class GraphMultiEPG(Screen): if self.zapFunc and self["key_red"].getText() == "Zap": self.closeRecursive = True ref = self["list"].getCurrent()[1] - self.zapFunc(ref.ref) + if ref: + self.zapFunc(ref.ref) def eventSelected(self): self.infoKeyPressed() |
