From 93fb5b3356f1b8e0bd302b66d4f788c49fe25c4c Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Fri, 4 Mar 2016 21:34:44 -0800 Subject: [PATCH] quote that argument --- tldp/doctypes/asciidoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldp/doctypes/asciidoc.py b/tldp/doctypes/asciidoc.py index 87127d6..72eb5e6 100644 --- a/tldp/doctypes/asciidoc.py +++ b/tldp/doctypes/asciidoc.py @@ -79,7 +79,7 @@ class Asciidoc(BaseDoctype): @depends(graph, make_chunked_html) def move_chunked_html(self): - s = 'mv --no-clobber -v -- {output.stem}.chunked html' + s = 'mv --no-clobber -v -- "{output.stem}.chunked" html' return self.shellscript(s) @depends(graph, move_chunked_html)