aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-09 22:51:55 +0000
committerGravatar jesopo2019-01-09 22:51:55 +0000
commit470f9fc945c52399bf514296faab481b6ffea96c (patch)
treee9a0c86070a3475a72dfaeafc245aeb9031d4ba2 /modules/github.py
parentShow which branch is being merged in to which (github.py) (diff)
signature
`from_repo`/`to_repo` -> `repo_from`/`repo_to` (github.py)
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 851cde4d..a3f87ad8 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -81,7 +81,7 @@ class Module(ModuleManager.BaseModule):
event["stdout"].write(
"(%s/%s pull#%s) [%s/%s] %s→%s - %s %s" % (
username, repository, number, added, removed,
- from_repo, to_repo, page.data["title"], url))
+ repo_from, repo_to, page.data["title"], url))
@utils.hook("api.post.github")
def webhook(self, event):