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.
1 parent 8a15137 commit 1238b85Copy full SHA for 1238b85
oidc_provider/lib/endpoints/token.py
@@ -148,8 +148,8 @@ def validate_requested_scopes(self):
148
if scope_requested in self.client.scope:
149
token_scopes.append(scope_requested)
150
else:
151
- logger.debug(f'[Token] The request scope {scope_requested} '
152
- f'is not supported by client {self.client.client_id}')
+ logger.debug('[Token] The request scope %s is not supported by client %s',
+ scope_requested, self.client.client_id)
153
raise TokenError('invalid_scope')
154
# if no scopes requested assign client's scopes
155
0 commit comments