summaryrefslogtreecommitdiffstats
path: root/ipalib/cli.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-08-13 02:34:36 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-08-13 02:34:36 +0000
commit0fed74b56d1940f84e7b64c3661f21baabcb4616 (patch)
tree2c6ed1f682f9d39f8a3e80c5d3bad17bf0920181 /ipalib/cli.py
parent69f7132365c4f369068b8e09921cd29ea92f3754 (diff)
downloadfreeipa-0fed74b56d1940f84e7b64c3661f21baabcb4616.tar.gz
freeipa-0fed74b56d1940f84e7b64c3661f21baabcb4616.tar.xz
freeipa-0fed74b56d1940f84e7b64c3661f21baabcb4616.zip
138: Added ProxyTarget.doc property; CLI.print_commands() now uses cmd.doc instead of cmd.get_doc()
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r--ipalib/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index f7b19801..7ae8ae3b 100644
--- a/ipalib/cli.py
+++ b/ipalib/cli.py
@@ -63,7 +63,7 @@ class CLI(object):
for cmd in self.api.cmd:
print ' %s %s' % (
to_cli(cmd.name).ljust(self.mcl),
- cmd.get_doc(_),
+ cmd.doc,
)
def __contains__(self, key):