summaryrefslogtreecommitdiffstats
path: root/ipaclient
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2016-06-07 13:09:42 +0200
committerJan Cholasta <jcholast@redhat.com>2016-06-09 09:11:28 +0200
commit64aa4496e265a7eb544c1ac26bf8354c3721a7e0 (patch)
tree961c71cbb90614744cb62c7b4a2e9db3346d185d /ipaclient
parent585e0d1b8c22cd20c207903047dc17f7318c50c4 (diff)
downloadfreeipa-64aa4496e265a7eb544c1ac26bf8354c3721a7e0.tar.gz
freeipa-64aa4496e265a7eb544c1ac26bf8354c3721a7e0.tar.xz
freeipa-64aa4496e265a7eb544c1ac26bf8354c3721a7e0.zip
schema: fix typo
This fixes summary lines for commands in the help command. https://fedorahosted.org/freeipa/ticket/4739 Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipaclient')
-rw-r--r--ipaclient/remote_plugins/schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaclient/remote_plugins/schema.py b/ipaclient/remote_plugins/schema.py
index c84994dec..c817562fc 100644
--- a/ipaclient/remote_plugins/schema.py
+++ b/ipaclient/remote_plugins/schema.py
@@ -207,7 +207,7 @@ def _create_command(schema):
command = {}
command['name'] = name
if 'doc' in schema:
- command['doc'] = ConcatenatedLazyText(['doc'])
+ command['doc'] = ConcatenatedLazyText(schema['doc'])
if 'topic_topic' in schema:
command['topic'] = str(schema['topic_topic'])
else: