diff options
| author | 2019-01-09 22:33:02 +0000 | |
|---|---|---|
| committer | 2019-01-09 22:33:02 +0000 | |
| commit | 56f431176c466950334190273eaed231a9c0d136 (patch) | |
| tree | 21d028b875a818d6c689238b46d999849e3f6b30 /modules | |
| parent | Add !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')
| -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 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)] |
