From a41cf7b4718c9a06543095eb9a5424529b41ff5b Mon Sep 17 00:00:00 2001 From: jesopo Date: Mon, 10 Dec 2018 21:07:38 +0000 Subject: [PATCH] Actually use `action_desc` in github.py.issues, so that we can see what things are labeled as --- modules/github.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"]