From 8cf771be2fb267692956d18639c48b4a6815ddd3 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 20 Aug 2016 17:36:34 -0700 Subject: [PATCH] ts6: fix typo --- protocols/ts6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/ts6.py b/protocols/ts6.py index 1f0a2c1..e271559 100644 --- a/protocols/ts6.py +++ b/protocols/ts6.py @@ -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: