diff --git a/src/sakia/core/registry/identity.py b/src/sakia/core/registry/identity.py index a1d2752a0cdae0c726d2081a015a93545b4c136a..8eb8e671f30869d9360fc90a8cd4df8b9dcd3090 100644 --- a/src/sakia/core/registry/identity.py +++ b/src/sakia/core/registry/identity.py @@ -246,7 +246,7 @@ class Identity(QObject): if person_uid == self.uid: return True except errors.UcoinError as e: - if e.ucode in (errors.NO_MATCHING_IDENTITY): + if e.ucode in (errors.NO_MATCHING_IDENTITY, errors.NO_MEMBER_MATCHING_PUB_OR_UID): logging.debug("Lookup error : {0}".format(str(e))) except NoPeerAvailable as e: logging.debug(str(e))