We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c63aa6 commit 2e0035eCopy full SHA for 2e0035e
src/saml2/mdstore.py
@@ -930,7 +930,7 @@ def imp(self, spec):
930
raise SAMLError("Misconfiguration in metadata %s" % item)
931
mod, clas = key.rsplit('.', 1)
932
try:
933
- mod = import_module(mod)
+ mod = importlib.import_module(mod)
934
MDloader = getattr(mod, clas)
935
except (ImportError, AttributeError):
936
raise SAMLError("Unknown metadata loader %s" % key)
0 commit comments