idp_oidc: fix typo in authz view warning msg, introduced in #35205

This commit is contained in:
Paul Marillonnet 2020-01-27 18:09:00 +01:00
parent 27f4e2b13e
commit d6c8741fcf
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ def authorize(request, *args, **kwargs):
return redirect(request, 'auth_homepage')
if client.authorization_flow == client.FLOW_RESOURCE_OWNER_CRED:
messages.warning(request, _('Client is configured for resource owner password crendetial grant type'))
messages.warning(request, _('Client is configured for resource owner password credentials grant type'))
return authorization_error(request, 'auth_homepage',
'unauthorized_client',
error_description='authz endpoint is configured '