Browse Source

oops, wrong log path edited

master
manetta 3 years ago
parent
commit
61346f03d4
  1. 5
      LogBot/logbot.py

5
LogBot/logbot.py

@ -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("https://vvvvvvaria.org/logs/", room_name, "index.html") # hard-coding the URL for now
log_path = os.path.join(self.output, room_name, "index.html")
with open(log_path, "w") as out:
html = template.render(
title=self.db[message.room]["title"],
@ -117,7 +117,8 @@ class Logbot(Bot):
date = datetime.now()
with open(feed_path, "w") as out:
feed = template.render(
log_path=os.path.join(self.output, room_name, "index.html"),
# hard-coding the URL for now
log_path=os.path.join("https://vvvvvvaria.org/logs/", room_name, "index.html"),
title=self.db[message.room]["title"],
db=self.db[message.room],
date=date.strftime("%A, %d. %B %Y %I:%M%p")

Loading…
Cancel
Save