aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/github.py')
-rw-r--r--modules/github.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/github.py b/modules/github.py
index dea19961..9feddc48 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -55,7 +55,7 @@ class Module(ModuleManager.BaseModule):
@utils.hook("received.command.ghissue", min_args=1)
def github_issue(self, event):
username, repository, number = self._parse_ref(
- event["channel"], event["args_split"][0])
+ event["target"], event["args_split"][0])
page = utils.http.request(
API_ISSUE_URL % (username, repository, number),
@@ -71,7 +71,7 @@ class Module(ModuleManager.BaseModule):
@utils.hook("received.command.ghpull", min_args=1)
def github_pull(self, event):
username, repository, number = self._parse_ref(
- event["channel"], event["args_split"][0])
+ event["target"], event["args_split"][0])
page = utils.http.request(
API_PULL_URL % (username, repository, number),