|
|
@ -101,7 +101,7 @@ class Logbot(Bot): |
|
|
|
"""Write new log to the file system.""" |
|
|
|
template = jinja2.Template(open("template.html").read()) |
|
|
|
room_name = self._parse_room_name(message.room) |
|
|
|
log_path = os.path.join(self.output, room_name, "index.html") |
|
|
|
log_path = os.path.join("https://vvvvvvaria.org/logs/", room_name, "index.html") # hard-coding the URL for now |
|
|
|
with open(log_path, "w") as out: |
|
|
|
html = template.render( |
|
|
|
title=self.db[message.room]["title"], |
|
|
|