diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-08-12 22:52:37 +0000 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-08-12 22:52:37 +0000 |
commit | b72cfa5dcc488f3b497fa05a88985cc8f790cc00 (patch) | |
tree | f18382c910dcae96b5e60091025826443c52381d /ipalib/plugable.py | |
parent | f767543fe71db6fb840ad8f328158fe0c6d65ad4 (diff) | |
download | freeipa.git-b72cfa5dcc488f3b497fa05a88985cc8f790cc00.tar.gz freeipa.git-b72cfa5dcc488f3b497fa05a88985cc8f790cc00.tar.xz freeipa.git-b72cfa5dcc488f3b497fa05a88985cc8f790cc00.zip |
121: Renamed API.__call__() method to API.finalize()
Diffstat (limited to 'ipalib/plugable.py')
-rw-r--r-- | ipalib/plugable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py index 230e8ee2..8241d8ea 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -485,7 +485,7 @@ class API(ReadOnly): self.register = Registrar(*allowed) self.__lock__() - def __call__(self): + def finalize(self): """ Finalize the registration, instantiate the plugins. """ |