Fix typo in super call

This commit is contained in:
Andrew Resch 2010-03-24 13:24:04 -07:00
parent ee8531aa24
commit afbca066d7
1 changed files with 1 additions and 1 deletions

View File

@ -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..")