diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2009-10-13 22:23:19 -0600 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2009-10-14 15:07:17 -0600 |
commit | 5c9437b9e683a5f721595a5e312e4d61a11b60c7 (patch) | |
tree | 5ab4ec1fa7acd241c48c678a4f650fd3c9ff5f1f /ipalib/cli.py | |
parent | f58ff2921defef330d53e08e427a82ced7585c88 (diff) | |
download | freeipa-5c9437b9e683a5f721595a5e312e4d61a11b60c7.tar.gz freeipa-5c9437b9e683a5f721595a5e312e4d61a11b60c7.tar.xz freeipa-5c9437b9e683a5f721595a5e312e4d61a11b60c7.zip |
Removed util.add_global_options() and frontend.Application
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 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*',) |