Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Commit

Permalink
Fix a hidden bug
Browse files Browse the repository at this point in the history
It was a missing piece of a previous change.
We will discuss more in PR.
  • Loading branch information
rayluo authored Oct 13, 2018
1 parent 855ee8e commit 3df29bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adal/mex.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def _select_username_password_polices(self, xpath):
policy_id = self._check_policy(policy_node)
if policy_id:
id_ref = '#' + policy_id
policies[id_ref] = {id:id_ref}
policies[id_ref] = {policy_id:id_ref}

return policies if policies else None

Expand Down

0 comments on commit 3df29bb

Please sign in to comment.