diff options
| author | 2019-01-09 22:47:47 +0000 | |
|---|---|---|
| committer | 2019-01-09 22:47:47 +0000 | |
| commit | 8399545fe3ff5a9f86e94e9a14094606d15a89d5 (patch) | |
| tree | fac6cf9e793c3904898ded55b6fe2f6ebc246197 /modules/github.py | |
| parent | `def github(` -> `def webhook(` (github.py) (diff) | |
| signature | ||
Add missing "(" for github pull request message format (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 66b29898..b79a84fa 100644 --- a/modules/github.py +++ b/modules/github.py @@ -78,7 +78,7 @@ class Module(ModuleManager.BaseModule): 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" % ( + event["stdout"].write("(%s/%s pull#%s) [%s/%s] %s %s" % ( username, repository, number, added, removed, page.data["title"], url)) |
