Fix a bug in filename output (not properly concatened)
This commit is contained in:
parent
1a5f65bdc2
commit
2df258676c
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue
Block a user