Move "(" on to start line for a string format
This commit is contained in:
parent
5767a1b32e
commit
58a0cf97cf
1 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue