From 7489b3dd962fb0febdbfccfd63472533ff7f947c Mon Sep 17 00:00:00 2001 From: jesopo Date: Wed, 7 Nov 2018 19:22:12 +0000 Subject: [PATCH] "%s commented on" -> "%s commented on a review" --- modules/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)]