From 03fd184e8e7459ac2a0c01c79259054f44721ca2 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Mon, 8 Sep 2008 21:42:48 +0000 Subject: [PATCH] 269: Renamed print_api command to show_plugins --- ipalib/cli.py | 4 ++-- 1 file 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)