From 64aa4496e265a7eb544c1ac26bf8354c3721a7e0 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Tue, 7 Jun 2016 13:09:42 +0200 Subject: [PATCH] schema: fix typo This fixes summary lines for commands in the help command. https://fedorahosted.org/freeipa/ticket/4739 Reviewed-By: David Kupka --- ipaclient/remote_plugins/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: