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.
2 parents 85bdb5e + ce450a7 commit 3e1b3d7Copy full SHA for 3e1b3d7
msal/authority.py
@@ -65,7 +65,7 @@ def user_realm_discovery(self, username):
65
66
def canonicalize(url):
67
# Returns (canonicalized_url, netloc, tenant). Raises ValueError on errors.
68
- match_object = re.match("https://([^/]+)/([^/\?#]+)", url.lower())
+ match_object = re.match(r'https://([^/]+)/([^/?#]+)', url.lower())
69
if not match_object:
70
raise ValueError(
71
"Your given address (%s) should consist of "
0 commit comments