fix PONG echoing broken by paramlist abstraction
This commit is contained in:
parent
9b25bc524f
commit
e706d5aad8
|
@ -160,7 +160,7 @@ class IRC(object):
|
||||||
self.out.put([msg, prefix, command, params, nick, user, host,
|
self.out.put([msg, prefix, command, params, nick, user, host,
|
||||||
paramlist, lastparam])
|
paramlist, lastparam])
|
||||||
if command == "PING":
|
if command == "PING":
|
||||||
self.cmd("PONG", [params])
|
self.cmd("PONG", paramlist)
|
||||||
|
|
||||||
def set_pass(self, password):
|
def set_pass(self, password):
|
||||||
if password:
|
if password:
|
||||||
|
|
Loading…
Reference in New Issue