From 3103a69754e16381fbcf50282ab9052918ac5a96 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Tue, 26 Feb 2008 05:27:12 +0000 Subject: [PATCH] Update Test plugin to work properly. --- deluge/plugins/testp/testp/core.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 +