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

Merge branch 'master' into wip/unrealircd

This commit is contained in:
James Lu 2015-10-08 20:59:59 -07:00
commit 079476bd85

View File

@ -220,7 +220,7 @@ def parseModes(irc, target, args):
arg = nickToUid(irc, arg) or arg arg = nickToUid(irc, arg) or arg
if arg not in irc.users: # Target doesn't exist, skip it. if arg not in irc.users: # Target doesn't exist, skip it.
log.debug('(%s) Skipping setting mode "%s %s"; the ' log.debug('(%s) Skipping setting mode "%s %s"; the '
'target doesn\'t seem to exist!', self.name, 'target doesn\'t seem to exist!', irc.name,
mode, arg) mode, arg)
continue continue
elif prefix == '+' and mode in supported_modes['*C']: elif prefix == '+' and mode in supported_modes['*C']: