Skip to content

Commit 12566ba

Browse files
authored
Merge pull request #712 from AzureAD/enable-ROPC-via-broker
Enable public client ROPC via broker
2 parents da156fe + 6feb432 commit 12566ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msal/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1714,7 +1714,7 @@ def acquire_token_by_username_password(
17141714
"""
17151715
claims = _merge_claims_challenge_and_capabilities(
17161716
self._client_capabilities, claims_challenge)
1717-
if False: # Disabled, for now. It was if self._enable_broker:
1717+
if self._enable_broker:
17181718
from .broker import _signin_silently
17191719
response = _signin_silently(
17201720
"https://{}/{}".format(self.authority.instance, self.authority.tenant),

0 commit comments

Comments
 (0)