summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)