Removed util.add_global_options() and frontend.Application

This commit is contained in:
Jason Gerard DeRose
2009-10-13 22:23:19 -06:00
parent f58ff2921d
commit 5c9437b9e6
5 changed files with 4 additions and 109 deletions

View File

@@ -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*',)