From afbca066d760d80f255e257800bf9e656ae841bc Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Wed, 24 Mar 2010 13:24:04 -0700 Subject: [PATCH] Fix typo in super call --- deluge/plugins/pluginbase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/plugins/pluginbase.py b/deluge/plugins/pluginbase.py index 842f911d0..f6fae5e25 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..")