From 78b663436bd8de7534df9ee106e2370dbfced8ab Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 4 Apr 2025 03:27:32 +0000 Subject: [PATCH] fix faulty fstring --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 561e47e..f10f662 100644 --- a/bot.py +++ b/bot.py @@ -24,7 +24,7 @@ class IRCBot(): self.s.connect((host, port)) self.nick = self.config["nick"] self.sendline(f"NICK {self.nick}") - self.sendline(f"USER {self.nick} 0 * :{self.config["realname"]}") + self.sendline(f"USER {self.nick} 0 * :{self.config['realname']}") for channel in self.config["channels"]: self.join_channel(channel) self.commands = [