Fix a bug in filename output (not properly concatened)

This commit is contained in:
Grégory Soutadé 2014-12-10 22:17:11 +01:00
parent 1a5f65bdc2
commit 2df258676c
1 changed files with 1 additions and 1 deletions

View File

@ -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):