aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-06 14:02:03 +0000
committerGravatar jesopo2018-11-06 14:02:03 +0000
commitbe3ee373dd876f7343fe2faf0cffbd90b8ccc30d (patch)
treeb68e1a7f43b6b7bad93abd30b1c4cf5d97f2e00d /modules/github.py
parentDon'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'
Diffstat (limited to 'modules/github.py')
-rw-r--r--modules/github.py2
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)