From 58a0cf97cfe804a53306a54d64bc0b9606f9f26a Mon Sep 17 00:00:00 2001 From: jesopo Date: Mon, 19 Nov 2018 20:56:42 +0000 Subject: [PATCH] Move "(" on to start line for a string format --- modules/github.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/github.py b/modules/github.py index 171b44f7..33fadc91 100644 --- a/modules/github.py +++ b/modules/github.py @@ -162,8 +162,8 @@ class Module(ModuleManager.BaseModule): if action == "closed": if data["pull_request"]["merged"]: branch = data["pull_request"]["base"]["ref"] - action_desc = "%s into %s" % - (utils.irc.color("merged", utils.consts.GREEN), + action_desc = "%s into %s" % ( + utils.irc.color("merged", utils.consts.GREEN), utils.irc.color(branch, utils.consts.BLUE)) else: action_desc = utils.irc.color("closed without merging",