No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with
1 additions and
2 deletions
-
LogBot/logbot.py
|
|
@ -102,11 +102,10 @@ class Logbot(Bot): |
|
|
|
|
|
|
|
def _write_log(self, message): |
|
|
|
"""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") |
|
|
|
with open(log_path, "w") as out: |
|
|
|
html = template.render( |
|
|
|
html = self.template.render( |
|
|
|
title=self.db[message.room]["title"], |
|
|
|
db=self.db[message.room]["messages"], |
|
|
|
) |
|
|
|