fix faulty fstring
This commit is contained in:
parent
bf101bdbf0
commit
78b663436b
2
bot.py
2
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 = [
|
||||
|
Loading…
x
Reference in New Issue
Block a user