From 01220b3024d278233afb2ef42219d66dacdb3c02 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 24 Jul 2015 10:59:04 -0700 Subject: [PATCH] correction: InspIRCd uses RFC1459 case mapping by default --- protocols/inspircd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/inspircd.py b/protocols/inspircd.py index 207eb61..b832060 100644 --- a/protocols/inspircd.py +++ b/protocols/inspircd.py @@ -10,7 +10,7 @@ from log import log from classes import * -casemapping = 'ascii' +casemapping = 'rfc1459' # Raw commands sent from servers vary from protocol to protocol. Here, we map # non-standard names to our hook handlers, so plugins get the information they need.