Skip to content

Commit

Permalink
Simplify error message for unknown client_id.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecka Gulliksson committed Apr 22, 2016
1 parent 97c2b13 commit 51a5244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/svs/oidc.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def verify_authn_request(self, query_string):
except KeyError as e:
abort_with_enduser_error("-", client_id, cherrypy.request, logger,
_error_msg,
"Unknown RP client id '{}': '{}'.".format(client_id, str(e)))
"Unknown RP client id '{}'.".format(client_id))

# verify that the redirect_uri is sound
if "redirect_uri" not in areq:
Expand Down

0 comments on commit 51a5244

Please sign in to comment.