aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-10-20 13:36:26 +0100
committerGravatar jesopo2019-10-20 13:36:26 +0100
commita4fbc150c80c8d170399dc6d1d813399f3a68f0b (patch)
tree1fed0c0da4bfe684da430e0f9198ce6e85a2025f
parentreturn None url param for tag_push (diff)
signature
add missing ]
-rw-r--r--modules/git_webhooks/gitlab.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/git_webhooks/gitlab.py b/modules/git_webhooks/gitlab.py
index 78c8ecd5..7034ebfa 100644
--- a/modules/git_webhooks/gitlab.py
+++ b/modules/git_webhooks/gitlab.py
@@ -97,7 +97,7 @@ class GitLab(object):
author = utils.irc.bold(data["user_username"])
action = "created" if create else "deleted"
- return [["%s %s a tag: %s" % (author, action, tag), None]
+ return [["%s %s a tag: %s" % (author, action, tag), None]]
def push(self, full_name, data):
outputs = []