irc: Fix some reply types of codes from int to str
patch f4cc7576a468f3c1edcd37d3f1992cb86fc1c1c8
Author: E. Bosch <presidev@AT@gmail.com>
Date: Sat Feb 6 01:07:48 CET 2021
* irc: Fix some reply types of codes from int to str
diff -rN -u old-irgramd/irc_replies.py new-irgramd/irc_replies.py
--- old-irgramd/irc_replies.py 2024-10-23 06:38:27.874749225 +0200
+++ new-irgramd/irc_replies.py 2024-10-23 06:38:27.874749225 +0200
@@ -7,10 +7,10 @@
'RPL_MYINFO': ('004', '{} irgramd-{} o nt'),
'RPL_ISUPPORT': ('005', 'CASEMAPPING=ascii CHANLIMIT=#&+: CHANTYPES=&#+ CHANMODES=,,,nt CHANNELLEN={} NICKLEN={} SAFELIST :are supported by this server'),
'RPL_ENDOFWHO': ('315', '{} :End of WHO list'),
- 'RPL_WHOREPLY': (352, '{} {} {} {} {} H{} :0 {}'),
+ 'RPL_WHOREPLY': ('352', '{} {} {} {} {} H{} :0 {}'),
'RPL_MOTDSTART': ('375', ':- {} Message of the day - '),
'RPL_MOTD': ('372', ':- {}'),
- 'RPL_ENDOFMOTD': (376, 'End of MOTD command'),
+ 'RPL_ENDOFMOTD': ('376', 'End of MOTD command'),
'ERR_NOSUCHNICK': ('401', 'No such nick'),
'ERR_NOSUCHSERVER': ('402', '{} :Target not found'),
'ERR_NOSUCHCHANNEL': ('403', 'No such channel'),