3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

inspircd: fix wrong arguments in numericServer() stub

This commit is contained in:
James Lu 2015-09-24 18:13:00 -07:00
parent c77d170765
commit 3351aafc79

View File

@ -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 "