From 1a9f715353928c9af6a80577b94c19c0ab6c3f24 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())