aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-17 22:35:32 +0000
committerGravatar jesopo2018-11-17 22:35:32 +0000
commita7e2eacf1d94c7b6833bbec5d24c5a5708dd019f (patch)
tree752d95a1d860f4436e644b64a0c87f93efdc6b12 /modules/github.py
parent... this one too. (diff)
signature
typo in modules/github.py, 'targets.append(server, channel)' ->
'targets.append([server, channel])'
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 15671d6e..9f616b4d 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -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