Fix help module missing self.info on Python 3.8.15

This commit is contained in:
Jarno Rankinen 2022-10-26 21:30:42 +03:00
parent 8b248a53ef
commit 0953457b96
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ class MatrixModule(BotModule):
def __init__(self, name):
super().__init__(name)
self.msg_users = False
self.info = "More information at https://github.com/vranki/hemppa"
def get_settings(self):
data = super().get_settings()