Browse Source

catching a small bug in the folder name renaming

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

2
LogBot/logbot.py

@ -161,7 +161,7 @@ class Logbot(Bot):
if "title" not in self.db[room]:
self.db[room]["title"] = room
if "folder" not in self.db[room]:
self.db[room]["folder"] = room
self.db[room]["folder"] = self._parse_room_name(room)
if "stylesheet" not in self.db[room]:
self.db[room]["stylesheet"] = "timeline" # default stylesheet
if "font" not in self.db[room]:

Loading…
Cancel
Save