Check server_tags in IrcMsg.__eq__.

This commit is contained in:
Valentin Lorentz 2020-05-07 18:34:58 +02:00
parent 307a2367f4
commit bb063b8064
1 changed files with 2 additions and 1 deletions

View File

@ -258,7 +258,8 @@ class IrcMsg(object):
hash(self) == hash(other) and \
self.command == other.command and \
self.prefix == other.prefix and \
self.args == other.args
self.args == other.args and \
self.server_tags == other.server_tags
__req__ = __eq__ # I don't know exactly what this does, but it can't hurt.
def __ne__(self, other):