Skip to content

Commit

Permalink
Handle an AttributeError originating from a pure python ExtensionClass.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotonen committed Oct 21, 2017
1 parent c6b362e commit a3c926b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AccessControl/ImplPython.py
Expand Up @@ -32,7 +32,7 @@
# security implementations exist, we can switch between them later.
try:
from AccessControl.cAccessControl import _what_not_even_god_should_do
except ImportError:
except (ImportError, AttributeError, ):
_what_not_even_god_should_do = []

from AccessControl.interfaces import ISecurityManager
Expand Down

0 comments on commit a3c926b

Please sign in to comment.