From 798cae51d4971a74fa5a7de4815b32d9871caad5 Mon Sep 17 00:00:00 2001 From: Philipp Hansch Date: Mon, 29 May 2017 23:15:22 +0200 Subject: [PATCH] Fix pylint issue --- scripts/asciidoc2html.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/asciidoc2html.py b/scripts/asciidoc2html.py index 0e51dac10..39695bd23 100755 --- a/scripts/asciidoc2html.py +++ b/scripts/asciidoc2html.py @@ -184,7 +184,8 @@ class AsciiDoc: with open(modified_src, 'w+', encoding='utf-8') as final_version: final_version.write(title + "\n\n" + header + current_lines) - self.call(modified_src, dst, '--theme=qute', '-a toc', '-a toc-placement=manual') + asciidoc_args = ['--theme=qute', '-a toc', '-a toc-placement=manual'] + self.call(modified_src, dst, *asciidoc_args) def _build_website(self): """Prepare and build the website."""