mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 13:19:24 +01:00
Bug fixes in src/ircmsgs.py
unbans did send the repr() of the ban list, and IrcMsg.__hash__ did try to hash a list. Conflicts: src/version.py Signed-off-by: James McCoy <jamessan@users.sourceforge.net>
This commit is contained in:
parent
f6f9e654cb
commit
998819da58
@ -182,7 +182,7 @@ class IrcMsg(object):
|
||||
return self._hash
|
||||
self._hash = hash(self.command) ^ \
|
||||
hash(self.prefix) ^ \
|
||||
hash(self.args)
|
||||
hash(repr(self.args))
|
||||
return self._hash
|
||||
|
||||
def __repr__(self):
|
||||
@ -522,7 +522,8 @@ def unbans(channel, hostmasks, prefix='', msg=None):
|
||||
if msg and not prefix:
|
||||
prefix = msg.prefix
|
||||
return IrcMsg(prefix=prefix, command='MODE', msg=msg,
|
||||
args=(channel, '-' + ('b'*len(hostmasks)), hostmasks))
|
||||
args=(channel, '-' + ('b'*len(hostmasks)),
|
||||
' '.join(hostmasks)))
|
||||
|
||||
def kick(channel, nick, s='', prefix='', msg=None):
|
||||
"""Returns a KICK to kick nick from channel with the message msg."""
|
||||
|
Loading…
Reference in New Issue
Block a user