From 9bd7de6840f730ce2387628846ff29b482fb53ce Mon Sep 17 00:00:00 2001 From: Skyflare Date: Fri, 25 Aug 2023 11:18:39 +0300 Subject: [PATCH] change ConnectionParams parameters to work with an undocumented breaking change introduced in ircrobots sometime before v0.6.6 --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 9e12452..01a2940 100755 --- a/bot.py +++ b/bot.py @@ -194,7 +194,7 @@ async def main(): botnick = entry['opts']['nickname'] channels = entry['opts']['channels'] - params = ConnectionParams(botnick, server, 6697, True) + params = ConnectionParams(botnick, server, 6697) for channel in channels: params.autojoin.append(channel) print("Reading channel", channel)