IRCP- information gathering tool for irc servers |
git clone git://git.acid.vegas/IRCP.git |
Log | Files | Refs | Archive | README | LICENSE |
commit e5fb155c2ecae5b66e0512b4649dc7d9d7c02042
parent b39be50b011ea6e3278e9c1748cf4419a536e90f Author: acidvegas <acid.vegas@acid.vegas> Date: Tue, 30 May 2023 03:41:32 -0400 Catch 451 (ERR_NOTREGISTERED) numeric (do we need to raise an exception for this one?) Diffstat:
|
1 file changed, 1 insertion(+), 0 deletions(-) |
diff --git a/ircp.py b/ircp.py @@ -113,6 +113,7 @@ snapshot = { '520' : None, # ERR_OPERONLY # bad server numerics + '451' : None, # ERR_NOTREGISTERED (TODO: Do we need to raise an exception for this numeric? '464' : None, # ERR_PASSWDMISMATCH '465' : None, # ERR_YOUREBANNEDCREEP '466' : None, # ERR_YOUWILLBEBANNED |