From ee7c3183e06c93651c19706e75e36e6236eff2b8 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Tue, 2 Sep 2025 07:37:23 +0200 Subject: [PATCH] Add missing 433 handler. --- ircplom/msg_parse_expectations.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ircplom/msg_parse_expectations.py b/ircplom/msg_parse_expectations.py index 0f2e26a..dd75c9c 100644 --- a/ircplom/msg_parse_expectations.py +++ b/ircplom/msg_parse_expectations.py @@ -236,6 +236,11 @@ MSG_EXPECTATIONS += [ ((MsgTok.NICKNAME, 'set_me_attr:nick'), MsgTok.NICKNAME, # no need to re-use the bad one MsgTok.ANY)), # comment + _MsgParseExpectation(MsgTok.SERVER, + '433', # ERR_NICKNAMEINUSE + ('*', + (MsgTok.NICKNAME, ':used'), + MsgTok.ANY)), # comment _MsgParseExpectation(MsgTok.SERVER, '433', # ERR_NICKNAMEINUSE (MsgTok.NICKNAME, # we rather go for incrementation -- 2.30.2