summaryrefslogtreecommitdiffstats
path: root/ipalib/cli.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-09-24 03:10:35 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-09-24 03:10:35 +0000
commit3bf2da571488b6f1ef27527fa3bff0133b44c2f5 (patch)
treeaed72b0c890686c5e7ddf38e593423b9d8e9fcd3 /ipalib/cli.py
parent19bbc48eb601bb942ed93776c05bf0c326970832 (diff)
downloadfreeipa.git-3bf2da571488b6f1ef27527fa3bff0133b44c2f5.tar.gz
freeipa.git-3bf2da571488b6f1ef27527fa3bff0133b44c2f5.tar.xz
freeipa.git-3bf2da571488b6f1ef27527fa3bff0133b44c2f5.zip
324: Removed 'smart_option_order' from Command.__public__; cli commands help, console, and show_plugins now override Command.run() instead of Command.__call__()
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r--ipalib/cli.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index 92c0cbc3..a76c08bc 100644
--- a/ipalib/cli.py
+++ b/ipalib/cli.py
@@ -57,7 +57,7 @@ class help(frontend.Application):
takes_args = ['command']
- def __call__(self, key):
+ def run(self, key):
key = str(key)
if key not in self.application:
print 'help: no such command %r' % key
@@ -70,16 +70,17 @@ class help(frontend.Application):
class console(frontend.Application):
'Start the IPA interactive Python console.'
- def __call__(self):
+ def run(self):
code.interact(
'(Custom IPA interactive Python console)',
local=dict(api=self.api)
)
+
class show_plugins(frontend.Application):
'Print details on the loaded plugins.'
- def __call__(self):
+ def run(self):
lines = self.__traverse()
ml = max(len(l[1]) for l in lines)
for line in lines: