diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-08 21:42:48 +0000 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-08 21:42:48 +0000 |
commit | 03fd184e8e7459ac2a0c01c79259054f44721ca2 (patch) | |
tree | a1b971eb1bc048dc0b0d626d00075caa1713a811 /ipalib/cli.py | |
parent | 7d3d607b557c45c230c1b246386d65e4d07e6493 (diff) | |
download | freeipa-03fd184e8e7459ac2a0c01c79259054f44721ca2.tar.gz freeipa-03fd184e8e7459ac2a0c01c79259054f44721ca2.tar.xz freeipa-03fd184e8e7459ac2a0c01c79259054f44721ca2.zip |
269: Renamed print_api command to show_plugins
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r-- | ipalib/cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py index e4de60310..db3e0137c 100644 --- a/ipalib/cli.py +++ b/ipalib/cli.py @@ -68,7 +68,7 @@ class console(public.Application): local=dict(api=self.api) ) -class print_api(public.Application): +class show_plugins(public.Application): 'Print details on the loaded plugins.' def __call__(self): @@ -161,7 +161,7 @@ class CLI(object): api = self.api api.register(help) api.register(console) - api.register(print_api) + api.register(show_plugins) api.finalize() for a in api.Application(): a.set_application(self) |