diff options
| author | 2018-11-19 20:56:42 +0000 | |
|---|---|---|
| committer | 2018-11-19 20:56:42 +0000 | |
| commit | 58a0cf97cfe804a53306a54d64bc0b9606f9f26a (patch) | |
| tree | ca3d96ebf06526491e16d214268a235781969483 | |
| parent | Show branch when a pull request is merged (diff) | |
| signature | ||
Move "(" on to start line for a string format
| -rw-r--r-- | modules/github.py | 4 |
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", |
