From be3ee373dd876f7343fe2faf0cffbd90b8ccc30d Mon Sep 17 00:00:00 2001 From: jesopo Date: Tue, 6 Nov 2018 14:02:03 +0000 Subject: [PATCH] Typo in modules/github.py, 'for output in output' -> 'for output in outputs' --- modules/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)