Browse Source

switching date format to ISO 8601

master
mb 1 year ago
parent
commit
c4859ecd85
  1. 2
      LogBot/logbot.py

2
LogBot/logbot.py

@ -102,7 +102,7 @@ class Logbot(Bot):
if "@" in folder_name: # hacky
folder_name = self._parse_room_name(folder_name)
feed_path = os.path.join(self.output, folder_name, "feed.rss.xml")
date = datetime.now().strftime("%a, %d %b %Y %H:%M:%S")
date = datetime.now().isoformat()
print(date)
template = jinja2.Template(open("template.rss").read()) # self.feedtemplate would be useful to have in the conf
with open(feed_path, "w") as out:

Loading…
Cancel
Save