From bbf3e45649af5af50c98ad90a86916cf75e8c74d Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Mon, 23 Oct 2017 20:41:08 +0200 Subject: [PATCH] fix: missing description added in asciidoc files --- tools/adoc_objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/adoc_objects.py b/tools/adoc_objects.py index 19b5701..0307c4b 100755 --- a/tools/adoc_objects.py +++ b/tools/adoc_objects.py @@ -87,7 +87,7 @@ def asciidoc(content=False, adoc=None, t='title',title=''): disableCorrelation = 'icon:check[] ' if 'description' in content['attributes'][v]: if content['attributes'][v]['description']: - values = '' + description = '{}'.format(content['attributes'][v]['description']) if 'values_list' in content['attributes'][v]: values = content['attributes'][v]['values_list'] description = '{} {}'.format(content['attributes'][v]['description'],values)