diff options
| author | 2018-12-10 21:07:38 +0000 | |
|---|---|---|
| committer | 2018-12-10 21:07:38 +0000 | |
| commit | a41cf7b4718c9a06543095eb9a5424529b41ff5b (patch) | |
| tree | ce578954d780654c533f623de2008a4d1227b11c /modules | |
| parent | Support `fork` event (github.py) (diff) | |
| signature | ||
Actually use `action_desc` in github.py.issues, so that we can see what things
are labeled as
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/github.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/github.py b/modules/github.py index f8c6e288..68663c3b 100644 --- a/modules/github.py +++ b/modules/github.py @@ -222,7 +222,8 @@ class Module(ModuleManager.BaseModule): issue_title = data["issue"]["title"] author = utils.irc.bold(data["sender"]["login"]) url = data["issue"]["html_url"] - return ["[issue] %s %s: %s - %s" % (author, action, issue_title, url)] + return ["[issue] %s %s: %s - %s" % + (author, action_desc, issue_title, url)] def issue_comment(self, event, full_name, data): action = data["action"] issue_title = data["issue"]["title"] |
