mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
Fix typo in super call
This commit is contained in:
parent
ee8531aa24
commit
afbca066d7
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class PluginBase(component.Component):
|
||||||
|
|
||||||
class CorePluginBase(PluginBase):
|
class CorePluginBase(PluginBase):
|
||||||
def __init__(self, plugin_name):
|
def __init__(self, plugin_name):
|
||||||
super(PluginBase, self).__init__("CorePlugin." + plugin_name)
|
super(CorePluginBase, self).__init__("CorePlugin." + plugin_name)
|
||||||
# Register RPC methods
|
# Register RPC methods
|
||||||
component.get("RPCServer").register_object(self, plugin_name.lower())
|
component.get("RPCServer").register_object(self, plugin_name.lower())
|
||||||
log.debug("CorePlugin initialized..")
|
log.debug("CorePlugin initialized..")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue