From 94bbc21ab1fa1a6b66e2cc49bc020a8ad77783c2 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 18 Aug 2025 20:40:01 +0200 Subject: [PATCH] Ignore 250. --- ircplom/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircplom/client.py b/ircplom/client.py index 98111ab..b4314fb 100644 --- a/ircplom/client.py +++ b/ircplom/client.py @@ -32,7 +32,7 @@ _NUMERICS_TO_CONFIRM_NICKNAME = ( ) _NUMERICS_TO_IGNORE = ( (1, 4), # nothing in this login info we're interested in - (251, 255), # same + (250, 255), # same (265, 266), # same 375, # RPL_MOTDSTART already implied to us by first appearance of 372 ) -- 2.30.2