diff options
| author | 2019-01-22 20:52:57 +0000 | |
|---|---|---|
| committer | 2019-01-22 20:52:57 +0000 | |
| commit | 8024e53a6832dbccb044c341d5bfa1a2bbbe7bff (patch) | |
| tree | ddcbf9679bdfee4f25fdb8e287ab4f4c45d43755 /modules/github/module.py | |
| parent | Typo, had ")" closing an array instead of "]" (github) (diff) | |
| signature | ||
Don't show current event filters comma-separated as they're not comma separated
when we set them and that's a little confusing (github)
Diffstat (limited to 'modules/github/module.py')
| -rw-r--r-- | modules/github/module.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github/module.py b/modules/github/module.py index 2f891a59..73b0ea98 100644 --- a/modules/github/module.py +++ b/modules/github/module.py @@ -200,7 +200,7 @@ class Module(ModuleManager.BaseModule): if len(event["args_split"]) < 3: event["stdout"].write("Events for hook %s: %s" % - (hook, ", ".join(all_hooks[existing_hook]["events"]))) + (hook, " ".join(all_hooks[existing_hook]["events"]))) else: new_events = [e.lower() for e in event["args_split"][2:]] all_hooks[existing_hook]["events"] = new_events |
