-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
At
z3c.relationfield/src/z3c/relationfield/relation.py
Lines 125 to 127 in 18ffe3f
| try: | |
| return intids.getObject(id) | |
| except KeyError: |
We catch a
KeyError, but according to the called getObject implementation it is never raised:https://github.com/zopefoundation/zope.intid/blob/3ae7ac3232167ae6d54dd920ce7fd179ba128615/src/zope/intid/__init__.py#L83-L89
Instead a
zope.intid.interfaces.ObjectMissingError is raised.