fix PONG echoing broken by paramlist abstraction

This commit is contained in:
Ryan Hitchman 2010-02-22 17:07:08 -07:00
parent 9b25bc524f
commit e706d5aad8
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ class IRC(object):
self.out.put([msg, prefix, command, params, nick, user, host,
paramlist, lastparam])
if command == "PING":
self.cmd("PONG", [params])
self.cmd("PONG", paramlist)
def set_pass(self, password):
if password: