From f21f4bbb5fb273c17b9a88ac61abc5e858ce696a Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Fri, 16 Mar 2018 12:01:23 +0100 Subject: [PATCH] fix: a typo to include numerical_value in the asciidoctor output --- tools/machinetag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/machinetag.py b/tools/machinetag.py index e922e59..57665ab 100755 --- a/tools/machinetag.py +++ b/tools/machinetag.py @@ -151,7 +151,7 @@ for taxonomy in taxonomies: if predicate.get('description'): doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['description']), adoc=doc, t='description') if predicate.get('numerical_value'): - doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['numerical_value']), adoc=adoc, t='description') + doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['numerical_value']), adoc=doc, t='description') if predicate.get('exclusive'): doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['exclusive']), adoc=adoc, t='exclusive') else: