3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-02-23 17:00:40 +01:00

ts6: fix typo

This commit is contained in:
James Lu 2016-08-20 17:36:34 -07:00
parent b572c58223
commit 8cf771be2f

View File

@ -182,7 +182,7 @@ class TS6Protocol(TS6BaseProtocol):
while modes[:10]:
# Seriously, though. If you send more than 10 mode parameters in
# a line, charybdis will silently REJECT the entire command!
joinedmodes = self.irc.joinModes(modes = [m for m in modes[:10] if m[0] not in self.irc.cmodes['*A']])
joinedmodes = self.irc.joinModes([m for m in modes[:10] if m[0] not in self.irc.cmodes['*A']])
modes = modes[10:]
self._send(numeric, 'TMODE %s %s %s' % (ts, target, joinedmodes))
else: