From 2df258676c69759a76680e6b523db43e62d58709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 10 Dec 2014 22:17:11 +0100 Subject: [PATCH] Fix a bug in filename output (not properly concatened) --- display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display.py b/display.py index 25cb0a2..99cf33e 100644 --- a/display.py +++ b/display.py @@ -259,7 +259,7 @@ class DisplayHTMLPage(object): self.blocks.append(block) def build(self, root): - filename = root + self.filename + filename = os.path.join(root, self.filename) base = os.path.dirname(filename) if not os.path.exists(base):