From 3351aafc79dd442c34cf2e092ec5f6333116e899 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 24 Sep 2015 18:13:00 -0700 Subject: [PATCH] inspircd: fix wrong arguments in numericServer() stub --- protocols/inspircd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/inspircd.py b/protocols/inspircd.py index 8f94c1a..41143d8 100644 --- a/protocols/inspircd.py +++ b/protocols/inspircd.py @@ -251,7 +251,7 @@ class InspIRCdProtocol(TS6BaseProtocol): if not (target is None or source is None): self._send(source, 'PING %s %s' % (source, target)) - def numericServer(self, source, numeric, text): + def numericServer(self, source, numeric, target, text): raise NotImplementedError("Numeric sending is not yet implemented by this " "protocol module. WHOIS requests are handled " "locally by InspIRCd servers, so there is no "