github_webhook: Fix a typo to handle issues event properly.

issue -> issues in the HTTP_X_GITHUB_EVENT.
This commit is contained in:
Kenji Okimoto
2017-06-29 14:28:37 +09:00
committed by Tim Abbott
parent 7b526b3946
commit 2eb6c49a89
2 changed files with 2 additions and 2 deletions

View File

@@ -370,7 +370,7 @@ EVENT_FUNCTION_MAPPER = {
'fork': get_fork_body,
'gollum': get_wiki_pages_body,
'issue_comment': get_issue_comment_body,
'issue': get_issue_body,
'issues': get_issue_body,
'member': get_member_body,
'membership': get_membership_body,
'opened_or_update_pull_request': get_opened_or_update_pull_request_body,