aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-09 22:50:21 +0000
committerGravatar jesopo2019-01-09 22:50:21 +0000
commitd6da46fac380e1a26e8cb090ef7e5fd29602c157 (patch)
tree1eaf5c9519919eba87c56bb724a485a7a3e80909 /modules
parentAdd missing "(" for github pull request message format (github.py) (diff)
signature
`to_from` -> `repo_to` (github.py)
Diffstat (limited to 'modules')
-rw-r--r--modules/github.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github.py b/modules/github.py
index b79a84fa..827c7f50 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -73,7 +73,7 @@ class Module(ModuleManager.BaseModule):
json=True)
if page:
repo_from = page.data["head"]["label"]
- to_from = page.data["base"]["label"]
+ repo_to = page.data["base"]["label"]
added = self._added(page.data["additions"])
removed = self._removed(page.data["deletions"])
url = self._short_url(page.data["html_url"])