Skip to content
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 src/django_github_webhook/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def dispatch(self, request, *args, **kwargs):
def post(self, request, *args, **kwargs):
secret = self.get_secret()
if not secret:
raise ImproperlyConfigured('GitHub webhook secret ist not defined.')
raise ImproperlyConfigured('GitHub webhook secret is not defined.')
if 'HTTP_X_HUB_SIGNATURE' not in request.META:
return HttpResponseBadRequest('Request does not contain X-GITHUB-SIGNATURE header')
if 'HTTP_X_GITHUB_EVENT' not in request.META:
Expand Down