diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-03-11 01:00:05 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-03-11 01:00:05 +0000 |
| commit | 2d23c069f94fc90593c211a359e44d82919701c3 (patch) | |
| tree | c4729f2cb173ea8810ad4ab46261a7b935ce0db0 | |
| parent | cac26b7fed73c832e8af35cc44830ef4a8f34d5a (diff) | |
| download | enigma2-2d23c069f94fc90593c211a359e44d82919701c3.tar.gz enigma2-2d23c069f94fc90593c211a359e44d82919701c3.zip | |
fix return of actionmap
| -rw-r--r-- | lib/python/Screens/EpgSelection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/EpgSelection.py b/lib/python/Screens/EpgSelection.py index bf841fa4..7f1b204c 100644 --- a/lib/python/Screens/EpgSelection.py +++ b/lib/python/Screens/EpgSelection.py @@ -50,7 +50,7 @@ class EPGSelection(Screen): class ChannelActionMap(ActionMap): def action(self, contexts, action): - ActionMap.action(self, contexts, action) + return ActionMap.action(self, contexts, action) self["actions"] = ChannelActionMap(["EPGSelectActions", "OkCancelActions"], { |
