Skip to content
This repository was archived by the owner on Nov 10, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion django_bouncy/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def endpoint(request):
# Verify that the notification is signed by Amazon
if (getattr(settings, 'BOUNCY_VERIFY_CERTIFICATE', True)
and not verify_notification(data)):
logger.error('Verification Failure %s', )
logger.error('Verification Failure %s', request_body)
return HttpResponseBadRequest('Improper Signature')

# Send a signal to say a valid notification has been received
Expand Down