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 action == "closed":
|
||||||
if data["pull_request"]["merged"]:
|
if data["pull_request"]["merged"]:
|
||||||
branch = data["pull_request"]["base"]["ref"]
|
branch = data["pull_request"]["base"]["ref"]
|
||||||
action_desc = "%s into %s" %
|
action_desc = "%s into %s" % (
|
||||||
(utils.irc.color("merged", utils.consts.GREEN),
|
utils.irc.color("merged", utils.consts.GREEN),
|
||||||
utils.irc.color(branch, utils.consts.BLUE))
|
utils.irc.color(branch, utils.consts.BLUE))
|
||||||
else:
|
else:
|
||||||
action_desc = utils.irc.color("closed without merging",
|
action_desc = utils.irc.color("closed without merging",
|
||||||
|
|
Loading…
Reference in a new issue