fix faulty fstring

This commit is contained in:
= 2025-04-04 03:27:32 +00:00
parent bf101bdbf0
commit 78b663436b

2
bot.py
View File

@ -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 = [