aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-09 22:33:02 +0000
committerGravatar jesopo2019-01-09 22:33:02 +0000
commit56f431176c466950334190273eaed231a9c0d136 (patch)
tree21d028b875a818d6c689238b46d999849e3f6b30 /modules/github.py
parentAdd !ghissue, to get information on an issue from github (github.py) (diff)
signature
Boldify `sender` on a pull request review comment (github.py)
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)]