Skip to content

Commit

Permalink
fix: [tools] Fix #273 in markdown generator
Browse files Browse the repository at this point in the history
  • Loading branch information
adulau committed Mar 4, 2024
1 parent 8cd705b commit 5e93071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/machinetag.py
Expand Up @@ -165,7 +165,7 @@ def machineTag(namespace=False, predicate=False, value=None):
if predicate.get('numerical_value'):
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')
doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['exclusive']), adoc=doc, t='exclusive')
else:
print(machineTag(namespace=namespace, predicate=predicate['value']))
if args.e:
Expand Down

0 comments on commit 5e93071

Please sign in to comment.