This commit is contained in:
deathbybandaid 2020-12-10 10:00:54 -05:00
parent a0103b7a32
commit 9aa786c968

View File

@ -10,7 +10,7 @@ class Origin_HTML():
def __init__(self, fhdhr):
self.fhdhr = fhdhr
self.template_file = pathlib.Path(self.fhdhr.config.internal["paths"]["origin"]).joinpath('origin.html')
self.template_file = pathlib.Path(self.fhdhr.config.internal["paths"]["origin_web"]).joinpath('origin.html')
self.template = StringIO()
self.template.write(open(self.template_file).read())