diff options
| author | 2019-10-20 13:36:26 +0100 | |
|---|---|---|
| committer | 2019-10-20 13:36:26 +0100 | |
| commit | a4fbc150c80c8d170399dc6d1d813399f3a68f0b (patch) | |
| tree | 1fed0c0da4bfe684da430e0f9198ce6e85a2025f | |
| parent | return None url param for tag_push (diff) | |
| signature | ||
add missing ]
| -rw-r--r-- | modules/git_webhooks/gitlab.py | 2 |
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 = [] |
