diff --git a/deluge/plugins/testp/testp/core.py b/deluge/plugins/testp/testp/core.py index b49b6a84d..9660ccd91 100644 --- a/deluge/plugins/testp/testp/core.py +++ b/deluge/plugins/testp/testp/core.py @@ -32,13 +32,12 @@ # statement from all source files in the program, then also delete it here. from deluge.log import LOG as log +from deluge.plugins.corepluginbase import CorePluginBase -class Core: - def __init__(self, plugin_api): - pass - +class Core(CorePluginBase): def enable(self): pass def disable(self): pass +