aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/github.py')
-rw-r--r--modules/github.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github.py b/modules/github.py
index 68623a01..982e2ab2 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -243,7 +243,7 @@ class Module(ModuleManager.BaseModule):
number = data["pull_request"]["number"]
action = data["action"]
pr_title = data["pull_request"]["title"]
- sender = data["sender"]["login"]
+ sender = utils.irc.bold(data["sender"]["login"])
url = self._short_url(data["comment"]["html_url"])
return ["[pr #%d] %s %s on a review: %s - %s" %
(number, sender, COMMENT_ACTIONS[action], pr_title, url)]