Author: damoxc

Revision: 5887

Log:
        need to actually continue from the loop otherwise another error still 
occurs

Diff:
Modified: branches/1.2_RC/deluge/pluginmanagerbase.py
===================================================================
--- branches/1.2_RC/deluge/pluginmanagerbase.py 2009-10-28 13:24:37 UTC (rev 
5886)
+++ branches/1.2_RC/deluge/pluginmanagerbase.py 2009-10-28 13:33:27 UTC (rev 
5887)
@@ -137,6 +137,7 @@
             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())

Modified: trunk/deluge/pluginmanagerbase.py
===================================================================
--- trunk/deluge/pluginmanagerbase.py   2009-10-28 13:24:37 UTC (rev 5886)
+++ trunk/deluge/pluginmanagerbase.py   2009-10-28 13:33:27 UTC (rev 5887)
@@ -137,6 +137,7 @@
             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())



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to