diff options
| author | 2019-04-11 13:09:30 +0100 | |
|---|---|---|
| committer | 2019-04-11 13:09:30 +0100 | |
| commit | 9e79320d503b08ecdb2b36433ddba53c35e25265 (patch) | |
| tree | c3f980f70bb2026bb4dc403624725e95fe98952e | |
| parent | Don't remove the first char of 'setting' twice (diff) | |
| signature | ||
'closed #123 without merging' -> 'closed #123'
| -rw-r--r-- | modules/github/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/github/__init__.py b/modules/github/__init__.py index 485a109d..1a011f17 100644 --- a/modules/github/__init__.py +++ b/modules/github/__init__.py @@ -519,9 +519,8 @@ class Module(ModuleManager.BaseModule): utils.irc.color("merged", COLOR_POSITIVE), number, colored_branch) else: - action_desc = "%s %s %s" % ( - utils.irc.color("closed", COLOR_NEGATIVE), number, - utils.irc.color("without merging", COLOR_NEGATIVE)) + action_desc = "%s %s" % ( + utils.irc.color("closed", COLOR_NEGATIVE), number) elif action == "synchronize": action_desc = "committed to %s" % number |
