mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +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):
|
||||
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..")
|
||||
|
|
Loading…
Add table
Reference in a new issue