Network/IRC/IrcWidget.py

changeset 6181
2ae7e332b941
parent 6048
82ad8ec9548c
child 6514
f11a703e4664
equal deleted inserted replaced
6180:8d72871c16ba 6181:2ae7e332b941
524 'replace') 524 'replace')
525 if self.__buffer.endswith("\r\n"): 525 if self.__buffer.endswith("\r\n"):
526 for line in self.__buffer.splitlines(): 526 for line in self.__buffer.splitlines():
527 line = line.strip() 527 line = line.strip()
528 if line: 528 if line:
529 logging.debug("<IRC> " + line) 529 logging.debug("<IRC> %s", line)
530 handled = False 530 handled = False
531 # step 1: give channels a chance to handle the message 531 # step 1: give channels a chance to handle the message
532 for channel in self.__channelList: 532 for channel in self.__channelList:
533 handled = channel.handleMessage(line) 533 handled = channel.handleMessage(line)
534 if handled: 534 if handled:

eric ide

mercurial