From 7ab890cf51cc79053fd5f3519c1e372f5813e26f Mon Sep 17 00:00:00 2001 From: randomuser Date: Wed, 23 Jun 2021 21:05:37 +0000 Subject: [PATCH] fix a variable reference --- botany.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/botany.py b/botany.py index f261c78..6f730e3 100644 --- a/botany.py +++ b/botany.py @@ -52,8 +52,7 @@ class IRCBotany(Botany): data = self.getInfo() if(data == []): return "{}'s invisible plant".format(self.euser) - string += self.euser - print(self.euser) + string += self.user string += "'s " if(data['is_dead']): string += "dead " string += data['description']