Module: deluge Branch: master Commit: afbca066d760d80f255e257800bf9e656ae841bc
Author: Andrew Resch <[email protected]> Date: Wed Mar 24 13:24:04 2010 -0700 Fix typo in super call --- deluge/plugins/pluginbase.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/plugins/pluginbase.py b/deluge/plugins/pluginbase.py index 842f911..f6fae5e 100644 --- a/deluge/plugins/pluginbase.py +++ b/deluge/plugins/pluginbase.py @@ -45,7 +45,7 @@ class PluginBase(component.Component): class CorePluginBase(PluginBase): def __init__(self, plugin_name): - super(PluginBase, self).__init__("CorePlugin." + plugin_name) + super(CorePluginBase, self).__init__("CorePlugin." + plugin_name) # Register RPC methods component.get("RPCServer").register_object(self, plugin_name.lower()) log.debug("CorePlugin initialized..") -- 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.
