Browse Source

room_path is almost correct

master
manetta 3 years ago
parent
commit
1ccae03d1c
  1. 2
      LogBot/logbot.py

2
LogBot/logbot.py

@ -22,7 +22,7 @@ def del_from_db(self, message, key):
def write_log(self, message):
template = jinja2.Template(open('template.html').read())
log_path = os.path.join(output, message.room, 'index.html')
log_path = os.path.join(self.room_path, 'index.html')
with open(log_path,'w') as out:
html = template.render(title=self.db[message.room]['title'], db=self.db[message.room]['messages'])
out.write(html)

Loading…
Cancel
Save