diff options
| author | 2019-01-09 22:50:21 +0000 | |
|---|---|---|
| committer | 2019-01-09 22:50:21 +0000 | |
| commit | d6da46fac380e1a26e8cb090ef7e5fd29602c157 (patch) | |
| tree | 1eaf5c9519919eba87c56bb724a485a7a3e80909 /modules/github.py | |
| parent | Add missing "(" for github pull request message format (github.py) (diff) | |
| signature | ||
`to_from` -> `repo_to` (github.py)
Diffstat (limited to 'modules/github.py')
| -rw-r--r-- | modules/github.py | 2 |
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"]) |
