diff options
| author | 2019-01-09 22:46:57 +0000 | |
|---|---|---|
| committer | 2019-01-09 22:46:57 +0000 | |
| commit | dc4c711fa04bb79b19408a0461510fa2cd919202 (patch) | |
| tree | 1e626ef8b926c9b937eb7c7bc7982e6947113be0 /modules/github.py | |
| parent | Add !ghpull, to get information on a pull request from github (github.py) (diff) | |
| signature | ||
Actually show deletions as deletions for github pull requests (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 e7b686b3..1f7a9213 100644 --- a/modules/github.py +++ b/modules/github.py @@ -75,7 +75,7 @@ class Module(ModuleManager.BaseModule): repo_from = page.data["head"]["label"] to_from = page.data["base"]["label"] added = self._added(page.data["additions"]) - removed = self._added(page.data["deletions"]) + removed = self._removed(page.data["deletions"]) url = self._short_url(page.data["html_url"]) event["stdout"].write("%s/%s pull#%s) [%s/%s] %s %s" % ( |
