diff --git a/ptgbot/db.py b/ptgbot/db.py index f481b65..f944da0 100644 --- a/ptgbot/db.py +++ b/ptgbot/db.py @@ -188,9 +188,9 @@ class PTGDataBase(): self.save() def new_day_cleanup(self): - self.data['now'] = {} - self.data['next'] = {} - self.data['location'] = {} + self.data['now'] = OrderedDict() + self.data['next'] = OrderedDict() + self.data['location'] = OrderedDict() self.clean_motd() def empty(self):