From 0aaa4f998211e8c63d6b43d3a36fe7d6b561a36f Mon Sep 17 00:00:00 2001 From: RaNaN Date: Tue, 9 Mar 2010 18:22:41 +0100 Subject: several fixes, closed #84 --- module/HookManager.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'module/HookManager.py') diff --git a/module/HookManager.py b/module/HookManager.py index 01d191ce4..279fdbaa7 100644 --- a/module/HookManager.py +++ b/module/HookManager.py @@ -53,10 +53,13 @@ class HookManager(): self.configParser.set(pluginName, {"option": "activated", "type": "bool", "name": "Activated"}, True) module = __import__("module.plugins.hooks." + pluginName, globals(), locals(), [pluginName], -1) pluginClass = getattr(module, pluginName) - plugin = pluginClass(self.core) - plugin.readConfig() - plugins.append(plugin) - self.logger.info("Activated %s" % pluginName) + try: + plugin = pluginClass(self.core) + plugin.readConfig() + plugins.append(plugin) + self.logger.info("Activated %s" % pluginName) + except: + self.logger.warning("Failed activating %s" % pluginName) self.plugins = plugins self.lock.release() -- cgit v1.2.3