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>
This commit is contained in:
Jan Cholasta
2016-06-07 13:09:42 +02:00
parent 585e0d1b8c
commit 64aa4496e2

View File

@@ -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: