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

nefarious: fix misplaced log line from efe38264ef

This commit is contained in:
James Lu 2017-01-06 16:43:10 -08:00
parent 94779326bc
commit 43002d466e

View File

@ -1020,11 +1020,10 @@ class P10Protocol(IRCS2SProtocol):
changedmodes = set(parsedmodes + bans) changedmodes = set(parsedmodes + bans)
namelist = [] namelist = []
prefixes = ''
userlist = args[-1].split(',')
log.debug('(%s) handle_burst: got userlist %r for %r', self.irc.name, userlist, channel) log.debug('(%s) handle_burst: got userlist %r for %r', self.irc.name, userlist, channel)
prefixes = ''
userlist = args[-1].split(',')
if args[-1] != args[1]: # Make sure the user list is the right argument (not the TS). if args[-1] != args[1]: # Make sure the user list is the right argument (not the TS).
for userpair in userlist: for userpair in userlist:
# This is given in the form UID1,UID2:prefixes. However, when one userpair is given # This is given in the form UID1,UID2:prefixes. However, when one userpair is given