fix a typo in the invalidjid exception name case
This commit is contained in:
parent
9fe20a4056
commit
9be30e5291
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue