Author: andar
Revision: 5600
Log:
Properly unload Execute plugin when disabling it
Diff:
Modified: trunk/deluge/plugins/execute/execute/gtkui.py
===================================================================
--- trunk/deluge/plugins/execute/execute/gtkui.py 2009-07-31 00:57:04 UTC
(rev 5599)
+++ trunk/deluge/plugins/execute/execute/gtkui.py 2009-07-31 07:40:50 UTC
(rev 5600)
@@ -118,8 +118,8 @@
def enable(self):
self.plugin = component.get("PluginManager")
- self.prefences = ExecutePreferences(self.plugin)
- self.prefences.load()
+ self.preferences = ExecutePreferences(self.plugin)
+ self.preferences.load()
def disable(self):
- pass
+ self.preferences.unload()
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---