diff options
author | mathieui <mathieui@mathieui.net> | 2019-08-25 01:42:00 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2019-08-25 01:42:00 +0200 |
commit | 9be30e52915c7523d932c5122efb8868995ca1ba (patch) | |
tree | 4d973fc363896e53c3a2fa7b96cf203849f0e1d8 | |
parent | 9fe20a4056423cf3e457abb7c884781563d44561 (diff) | |
download | slixmpp-9be30e52915c7523d932c5122efb8868995ca1ba.tar.gz slixmpp-9be30e52915c7523d932c5122efb8868995ca1ba.tar.bz2 slixmpp-9be30e52915c7523d932c5122efb8868995ca1ba.tar.xz slixmpp-9be30e52915c7523d932c5122efb8868995ca1ba.zip |
fix a typo in the invalidjid exception name case
-rw-r--r-- | slixmpp/jid.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |