From 5c9437b9e683a5f721595a5e312e4d61a11b60c7 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Tue, 13 Oct 2009 22:23:19 -0600 Subject: Removed util.add_global_options() and frontend.Application --- ipalib/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/cli.py') diff --git a/ipalib/cli.py b/ipalib/cli.py index e47000107..85282a039 100644 --- a/ipalib/cli.py +++ b/ipalib/cli.py @@ -612,7 +612,7 @@ class help(frontend.Command): print ' %s %s' % (to_cli(c.name).ljust(mcl), c.doc) -class console(frontend.Application): +class console(frontend.Command): """Start the IPA interactive Python console.""" def run(self): @@ -622,7 +622,7 @@ class console(frontend.Application): ) -class show_api(frontend.Application): +class show_api(frontend.Command): 'Show attributes on dynamic API object' takes_args = ('namespaces*',) -- cgit