aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-19 20:56:42 +0000
committerGravatar jesopo2018-11-19 20:56:42 +0000
commit58a0cf97cfe804a53306a54d64bc0b9606f9f26a (patch)
treeca3d96ebf06526491e16d214268a235781969483
parentShow branch when a pull request is merged (diff)
signature
Move "(" on to start line for a string format
-rw-r--r--modules/github.py4
1 files 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",