From 46ca1b1fb50e3bf16b2db5cb652756d677599443 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sat, 27 Feb 2021 10:46:10 +0100 Subject: [PATCH] Not required to return here --- LogBot/logbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LogBot/logbot.py b/LogBot/logbot.py index 60ee2f6..1de6239 100644 --- a/LogBot/logbot.py +++ b/LogBot/logbot.py @@ -215,7 +215,7 @@ logbot @uptime: To check how long @logbot has been around reply = "Hmm ... not sure what you want to do?" write_log(self, message, self.log) - return self.reply(reply, room=message.room) + self.reply(reply, room=message.room) logbot()