typo in modules/github.py, 'targets.append(server, channel)' ->
'targets.append([server, channel])'
This commit is contained in:
parent
369af13e4b
commit
a7e2eacf1d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue