FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 0dbdfbf5 authored by Ben Harris's avatar Ben Harris
Browse files

Don't include user-supplied data in exception message.

parent 7937ed17
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@ class RavenResponse(object):
# accessed. The request has already been checked against
# ALLOWED_HOSTS by Django.
if self.url != get_return_url(response_req):
raise InvalidResponseError("The URL in the response does not match the URL expected (%s vs %s)" % (self.url, get_return_url(response_req)))
raise InvalidResponseError("The URL in the response does not match the URL expected")
# principal: Only present if status == 200, indicates the authenticated identity of the user
if self.status == 200:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment