From 1b01c9c3c05fdd42327406161bd5c51e05fbca19 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Tue, 28 Oct 2008 19:52:04 +0000 Subject: remove non working wrapper class to add a (unneeded) .get() call to eConsoleAppContainers.. so now all external plugins must remove this .get() calls... example: cont = eConsoleAppContainer() cont.appClosed.append(cb_func) # old was cont.appClosed.get().append(cb_func) --- lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py') diff --git a/lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py b/lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py index 71f935cd..c8b0b383 100644 --- a/lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py +++ b/lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py @@ -10,7 +10,7 @@ class PluginRunner(Screen): self.skin = PluginRunner.skin Screen.__init__(self, session) self.container = eConsoleAppContainer() - self.container.appClosed.get().append(self.finishedExecution) + self.container.appClosed.append(self.finishedExecution) self.runPlugin(pluginname) def runPlugin(self, pluginname): -- cgit v1.2.3