summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--asciidoc/a2x.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/asciidoc/a2x.py b/asciidoc/a2x.py
index 931aabd..da19173 100644
--- a/asciidoc/a2x.py
+++ b/asciidoc/a2x.py
@@ -675,6 +675,12 @@ class A2X(AttrDict):
options.append(('--backend', 'docbook'))
options.append(('-a', 'a2x-format=%s' % self.format))
options.append(('--out-file', docbook_file))
+
+ verbose("executing: asciidoc {} {}".format(
+ ' '.join(map(lambda x: "{}{}".format(x[0], " " + x[1] if x[1] else ""), options)),
+ self.asciidoc_file
+ ))
+
asciidoc.cli(flatten(['asciidoc'] + options + [self.asciidoc_file]))
if not self.no_xmllint and XMLLINT:
xmllint_options = ['--nonet', '--noout', '--valid']