summaryrefslogtreecommitdiffstats
path: root/ipalib/cli.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-10-13 22:23:19 -0600
committerJason Gerard DeRose <jderose@redhat.com>2009-10-14 15:07:17 -0600
commit5c9437b9e683a5f721595a5e312e4d61a11b60c7 (patch)
tree5ab4ec1fa7acd241c48c678a4f650fd3c9ff5f1f /ipalib/cli.py
parentf58ff2921defef330d53e08e427a82ced7585c88 (diff)
downloadfreeipa-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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index e4700010..85282a03 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*',)