From f87ba5ee080ebf24d2420d105aa4026e844439db Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Wed, 24 Jun 2015 15:14:54 +0000 Subject: plugable: Move plugin base class and override logic to API Each API object now maintains its own view of registered plugins. This change removes the need to register plugin base classes. This reverts commit 2db741e847c60d712dbc8ee1cd65a978a78eb312. https://fedorahosted.org/freeipa/ticket/3090 https://fedorahosted.org/freeipa/ticket/5073 Reviewed-By: Martin Babinsky --- ipalib/backend.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'ipalib/backend.py') diff --git a/ipalib/backend.py b/ipalib/backend.py index fcbbd254a..0f381cb9e 100644 --- a/ipalib/backend.py +++ b/ipalib/backend.py @@ -27,10 +27,7 @@ import os from errors import PublicError, InternalError, CommandError from request import context, Connection, destroy_context -register = plugable.Registry() - -@register.base() class Backend(plugable.Plugin): """ Base class for all backend plugins. -- cgit