(self,reply)
| 97 | |
| 98 | # Write a message into the bot channel |
| 99 | def reply(self,reply): |
| 100 | if not self.connected: return |
| 101 | self.write(b"PRIVMSG %s :%s\r\n" %(self.channel,reply)) |
| 102 | |
| 103 | # Receive every line from the IRC server, and does the |
| 104 | # right thing according to the protocol. |
no test coverage detected