Skip to content

Commit

Permalink
Merge pull request #1101 from uc-cdis/chore/change_and_to_comma
Browse files Browse the repository at this point in the history
  • Loading branch information
k-burt-uch authored May 31, 2023
2 parents 343af22 + 81111ae commit 3cc55b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fence/blueprints/oauth2.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def _get_auth_response_for_prompts(prompts, grant, user, client, scope):
idp_names.append(idp_name)

resource_description = [
SCOPE_DESCRIPTION[s].format(idp_names=" and ".join(idp_names))
SCOPE_DESCRIPTION[s].format(idp_names=", ".join(idp_names))
for s in shown_scopes
]

Expand Down

0 comments on commit 3cc55b3

Please sign in to comment.