From b7864ffb4152fc0a7ce22623bf115cb4db7c9f88 Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 18 Jan 2019 12:13:01 +0000 Subject: [PATCH] Typo, 'all_hook' -> 'all_hooks' (github.py) --- modules/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/github.py b/modules/github.py index 8e84011e..4662fa57 100644 --- a/modules/github.py +++ b/modules/github.py @@ -188,7 +188,7 @@ class Module(ModuleManager.BaseModule): else: new_events = [e.lower() for e in event["args_split"][2:]] all_hooks[existing_hook]["events"] = new_events - event["target"].set_setting("github-hooks", all_hook) + event["target"].set_setting("github-hooks", all_hooks) event["stdout"].write("Updated events for hook %s" % hook) @utils.hook("api.post.github")