(wip) reworking of the Message class; backported from v4

This commit is contained in:
nemunaire 2014-08-29 16:33:45 +02:00
parent 0e26450d8f
commit 0a16321259
15 changed files with 186 additions and 179 deletions

View file

@ -26,4 +26,4 @@ class IRCException(Exception):
self.personnal = personnal
def fill_response(self, msg):
return Response(msg.sender, self.message, channel=msg.channel, nick=(msg.nick if self.personnal else None))
return Response(msg.sender, self.message, channel=msg.receivers, nick=(msg.nick if self.personnal else None))