aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-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 = []