From 8e745df3f08e2c5237f3f9253b0b4af2ce96b07a Mon Sep 17 00:00:00 2001 From: Oliver Ni Date: Tue, 1 Oct 2024 17:45:22 -0700 Subject: [PATCH] fix identify --- ircbot/ircbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircbot/ircbot.py b/ircbot/ircbot.py index 11626b2..8fb7b99 100644 --- a/ircbot/ircbot.py +++ b/ircbot/ircbot.py @@ -184,7 +184,7 @@ def listen( ) def on_welcome(self, conn, _): - conn.privmsg('NickServ', f'identify {self.nickserv_password}') + conn.privmsg('NickServ', f'identify {IRC_NICKNAME} {self.nickserv_password}') # Join the "main" IRC channels. for channel in IRC_CHANNELS_OPER | IRC_CHANNELS_ANNOUNCE | self.extra_channels: