diff options
| author | 2019-01-09 22:47:20 +0000 | |
|---|---|---|
| committer | 2019-01-09 22:47:20 +0000 | |
| commit | aa04071d8976557a4661ae5e1d21213cc7eea55c (patch) | |
| tree | 7353eeded2d29241c4077e1d23507d12b82de8db /modules/github.py | |
| parent | Actually show deletions as deletions for github pull requests (github.py) (diff) | |
| signature | ||
`def github(` -> `def webhook(` (github.py)
Diffstat (limited to 'modules/github.py')
| -rw-r--r-- | modules/github.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github.py b/modules/github.py index 1f7a9213..66b29898 100644 --- a/modules/github.py +++ b/modules/github.py @@ -83,7 +83,7 @@ class Module(ModuleManager.BaseModule): page.data["title"], url)) @utils.hook("api.post.github") - def github(self, event): + def webhook(self, event): payload = event["data"].decode("utf8") if event["headers"]["Content-Type"] == FORM_ENCODED: payload = urllib.parse.unquote(urllib.parse.parse_qs(payload)[ |
