diff --git a/LogBot/logbot.py b/LogBot/logbot.py index 8c1ce0c..721ba38 100644 --- a/LogBot/logbot.py +++ b/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().isoformat() + date = datetime.now().strftime("%a, %d %b %Y %H:%M:%S") 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: @@ -121,7 +121,7 @@ class Logbot(Bot): """Save new entry to database.""" keys = [x for x in self.db[message.room]["messages"].keys()] keys.sort(key=int) - date = datetime.now().isoformat() + date = datetime.now().strftime("%a, %d %b %Y %H:%M:%S") if not keys: new_key = "0" else: