Comment 7 for bug 1812913

Revision history for this message
Sven Wegener (swegener) wrote :

The issue here is that hasattr() behaves differently between python2 and python3.
On python2 it catches all exceptions to return False.
On python3 it only catches AttributeError to return False, all others exceptions (here DetachedInstanceError) are not caught.