diff options
| author | 2018-11-06 14:02:03 +0000 | |
|---|---|---|
| committer | 2018-11-06 14:02:03 +0000 | |
| commit | be3ee373dd876f7343fe2faf0cffbd90b8ccc30d (patch) | |
| tree | b68e1a7f43b6b7bad93abd30b1c4cf5d97f2e00d | |
| parent | Don't parse github events when there are no channels listening for the given (diff) | |
| signature | ||
Typo in modules/github.py, 'for output in output' -> 'for output in outputs'
| -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 9856930d..d0438782 100644 --- a/modules/github.py +++ b/modules/github.py @@ -45,7 +45,7 @@ class Module(ModuleManager.BaseModule): if outputs: for server_id, channel_name, _ in hooks: - for output in output: + for output in outputs: server = self.bot.get_server(server_id) channel = server.get_channel(channel_name) trigger = self._make_trigger(channel, server, output) |
