3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-18 08:02:51 +01:00

Merge remote-tracking branch 'origin/master' into devel

This commit is contained in:
James Lu 2016-07-01 20:42:46 -07:00
commit 55e0da96c3

View File

@ -611,9 +611,9 @@ class TS6Protocol(TS6BaseProtocol):
def handle_tb(self, numeric, command, args): def handle_tb(self, numeric, command, args):
"""Handles incoming topic burst (TB) commands.""" """Handles incoming topic burst (TB) commands."""
# <- :42X TB 1434510754 #channel GLo|o|!GLolol@escape.the.dreamland.ca :Some channel topic # <- :42X TB #chat 1467427448 GL!~gl@127.0.0.1 :test
channel = args[1].lower() channel = args[0].lower()
ts = args[0] ts = args[1]
setter = args[2] setter = args[2]
topic = args[-1] topic = args[-1]
self.irc.channels[channel].topic = topic self.irc.channels[channel].topic = topic