From 9be30e52915c7523d932c5122efb8868995ca1ba Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 25 Aug 2019 01:42:00 +0200 Subject: fix a typo in the invalidjid exception name case --- slixmpp/jid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slixmpp') diff --git a/slixmpp/jid.py b/slixmpp/jid.py index c6a8047c..5d39a444 100644 --- a/slixmpp/jid.py +++ b/slixmpp/jid.py @@ -425,7 +425,7 @@ class JID: if not isinstance(other, JID): try: other = JID(other) - except InvalidJid: + except InvalidJID: return NotImplemented return (self._node == other._node and -- cgit v1.2.3