aboutsummaryrefslogtreecommitdiff
path: root/modules/git_webhooks/gitlab.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-10-20 13:34:41 +0100
committerGravatar jesopo2019-10-20 13:34:41 +0100
commitb152c5e3a71db078c9f3ede8aff16db336579ce1 (patch)
treeae3aa731031f5b46510c85780d6064fa2c2a4611 /modules/git_webhooks/gitlab.py
parentadded gitlab Tag Push events (diff)
signature
return None url param for tag_push
Diffstat (limited to 'modules/git_webhooks/gitlab.py')
-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 73749850..78c8ecd5 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)]
+ return [["%s %s a tag: %s" % (author, action, tag), None]
def push(self, full_name, data):
outputs = []