Typo in modules/github.py, 'for output in output' -> 'for output in outputs'
This commit is contained in:
parent
c3c6080117
commit
be3ee373dd
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
|
|
||||||
if outputs:
|
if outputs:
|
||||||
for server_id, channel_name, _ in hooks:
|
for server_id, channel_name, _ in hooks:
|
||||||
for output in output:
|
for output in outputs:
|
||||||
server = self.bot.get_server(server_id)
|
server = self.bot.get_server(server_id)
|
||||||
channel = server.get_channel(channel_name)
|
channel = server.get_channel(channel_name)
|
||||||
trigger = self._make_trigger(channel, server, output)
|
trigger = self._make_trigger(channel, server, output)
|
||||||
|
|
Loading…
Reference in a new issue