From 81111aedbe8ab0a603a4dcbc11b37b00b318b2cf Mon Sep 17 00:00:00 2001 From: Sai Shanmukha Narumanchi Date: Tue, 30 May 2023 21:59:26 +0530 Subject: [PATCH] Switching the `and` with `,` in user scope description --- fence/blueprints/oauth2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fence/blueprints/oauth2.py b/fence/blueprints/oauth2.py index 01ed36706..d79f106aa 100644 --- a/fence/blueprints/oauth2.py +++ b/fence/blueprints/oauth2.py @@ -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 ]