From 2d23c069f94fc90593c211a359e44d82919701c3 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sat, 11 Mar 2006 01:00:05 +0000 Subject: [PATCH] fix return of actionmap --- lib/python/Screens/EpgSelection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"], { -- 2.30.2