typo in modules/github.py, 'targets.append(server, channel)' ->

'targets.append([server, channel])'
This commit is contained in:
jesopo 2018-11-17 22:35:32 +00:00
parent 369af13e4b
commit a7e2eacf1d

View file

@ -53,7 +53,7 @@ class Module(ModuleManager.BaseModule):
github_events = channel.get_setting("github-events",
DEFAULT_EVENTS)
if github_event in github_events:
targets.append(server, channel)
targets.append([server, channel])
if not targets:
return None