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 4db4a8c commit 30dce4eCopy full SHA for 30dce4e
msal/application.py
@@ -208,6 +208,11 @@ def _msal_extension_check():
208
pass # The optional msal_extensions is not installed. Business as usual.
209
except ValueError:
210
logger.exception(f"msal_extensions version {v} not in major.minor.patch format")
211
+ except:
212
+ logger.exception(
213
+ "Unable to import msal_extensions during an optional check. "
214
+ "This exception can be safely ignored."
215
+ )
216
217
218
class ClientApplication(object):
0 commit comments