From 0953457b96092693b4421531608280e7f8cbc383 Mon Sep 17 00:00:00 2001 From: Jarno Rankinen Date: Wed, 26 Oct 2022 21:30:42 +0300 Subject: [PATCH] Fix help module missing self.info on Python 3.8.15 --- modules/help.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/help.py b/modules/help.py index 54d05d0..ea0ed09 100644 --- a/modules/help.py +++ b/modules/help.py @@ -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()