diff options
| author | 2018-11-07 19:22:12 +0000 | |
|---|---|---|
| committer | 2018-11-07 19:22:12 +0000 | |
| commit | 7489b3dd962fb0febdbfccfd63472533ff7f947c (patch) | |
| tree | 83607a488981e8fccb715441187777d52f824043 | |
| parent | don't show pull request review events when they're "commented" (diff) | |
| signature | ||
"%s commented on" -> "%s commented on a review"
| -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 8401dd36..56a17426 100644 --- a/modules/github.py +++ b/modules/github.py @@ -126,7 +126,7 @@ class Module(ModuleManager.BaseModule): pr_title = data["pull_request"]["title"] commenter = data["comment"]["user"]["login"] url = data["comment"]["html_url"] - return ["(%s) [pr#%d] %s %s on: %s - %s" % + return ["(%s) [pr#%d] %s %s on a review: %s - %s" % (full_name, pr_number, commenter, COMMENT_ACTIONS[action], pr_title, url)] |
