aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-04-11 13:09:30 +0100
committerGravatar jesopo2019-04-11 13:09:30 +0100
commit9e79320d503b08ecdb2b36433ddba53c35e25265 (patch)
treec3f980f70bb2026bb4dc403624725e95fe98952e
parentDon't remove the first char of 'setting' twice (diff)
signature
'closed #123 without merging' -> 'closed #123'
-rw-r--r--modules/github/__init__.py5
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