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

hybrid: fix EOB handler name

This commit is contained in:
James Lu 2016-04-08 20:36:14 -07:00
parent 0be83449fb
commit 3dbae3b744

View File

@ -213,7 +213,7 @@ class HybridProtocol(TS6Protocol):
self.irc.channels[channel].topicset = True self.irc.channels[channel].topicset = True
return {'channel': channel, 'setter': setter, 'ts': ts, 'text': topic} return {'channel': channel, 'setter': setter, 'ts': ts, 'text': topic}
def handle_endburst(self, numeric, command, args): def handle_eob(self, numeric, command, args):
log.debug('(%s) end of burst received', self.irc.name) log.debug('(%s) end of burst received', self.irc.name)
return {} return {}