aboutsummaryrefslogtreecommitdiff
path: root/modules/git_webhooks/gitlab.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/git_webhooks/gitlab.py')
-rw-r--r--modules/git_webhooks/gitlab.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/git_webhooks/gitlab.py b/modules/git_webhooks/gitlab.py
index e7e155cb..9661549f 100644
--- a/modules/git_webhooks/gitlab.py
+++ b/modules/git_webhooks/gitlab.py
@@ -108,7 +108,7 @@ class GitLab(object):
message = commit["message"].split("\n")[0].strip()
url = commit["url"]
- outputs.append(["%s pushed %s to %s: %s - %s"
+ outputs.append(["%s pushed %s to %s: %s"
% (author, hash_colored, branch, message), url])
else:
first_id = data["before"]
@@ -152,7 +152,7 @@ class GitLab(object):
author = utils.irc.bold(data["user"]["username"])
url = data["object_attributes"]["url"]
- return [["[issue] %s %s %s: %s - %s" %
+ return [["[issue] %s %s %s: %s" %
(author, action, number, issue_title), url]]
def note(self, full_name, data):