From dee595ad2b66aa95f7fec64da60cc37e0cbdae4a Mon Sep 17 00:00:00 2001 From: manetta Date: Thu, 6 May 2021 22:00:22 +0200 Subject: [PATCH] in response to issue #15: adding reversed order to the pages --- LogBot/logbot.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/LogBot/logbot.py b/LogBot/logbot.py index a4de56b..4862639 100644 --- a/LogBot/logbot.py +++ b/LogBot/logbot.py @@ -167,7 +167,7 @@ class Logbot(Bot): if not os.path.exists(room_path): os.mkdir(room_path) - stylesheet_path = os.path.join("stylesheets","linear.css") # default stylesheet + stylesheet_path = os.path.join("stylesheets","timeline.css") # default stylesheet stylesheet_dest_path = os.path.join(room_path,"stylesheet.css") shutil.copy(stylesheet_path, stylesheet_dest_path) self.log.info(f"Created a folder for: { room }") @@ -280,5 +280,4 @@ class Logbot(Bot): # Reply to the groupchat self.reply(reply, room=message.room) - Logbot()