summaryrefslogtreecommitdiffstats
path: root/ipalib/cli.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-09-08 21:42:48 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-09-08 21:42:48 +0000
commit03fd184e8e7459ac2a0c01c79259054f44721ca2 (patch)
treea1b971eb1bc048dc0b0d626d00075caa1713a811 /ipalib/cli.py
parent7d3d607b557c45c230c1b246386d65e4d07e6493 (diff)
downloadfreeipa-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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index e4de6031..db3e0137 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)