From 93e3d2acf68376abb4c903770c6eb7c17b4cc369 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Wed, 28 Oct 2009 13:33:27 +0000 Subject: [PATCH] need to actually continue from the loop otherwise another error still occurs --- deluge/pluginmanagerbase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deluge/pluginmanagerbase.py b/deluge/pluginmanagerbase.py index 0715e5953..7a899475e 100644 --- a/deluge/pluginmanagerbase.py +++ b/deluge/pluginmanagerbase.py @@ -137,6 +137,7 @@ class PluginManagerBase: except Exception, e: log.error("Unable to instantiate plugin!") log.exception(e) + continue instance.enable() if self.get_state() == component.COMPONENT_STATE.index("Started"): component.start(instance.plugin.get_component_name())