diff options
| author | 2019-11-01 10:28:47 +0000 | |
|---|---|---|
| committer | 2019-11-01 10:28:47 +0000 | |
| commit | 96d175bc31c8c7bd9e8fc4149a601f0caa11e572 (patch) | |
| tree | 29cc4a8db8d9b63588509651575d95267a43977a /modules/git_webhooks/gitea.py | |
| parent | Merge pull request #198 from fosslinux/config-unchanged (diff) | |
| signature | ||
fix Gitea `release` event return
Diffstat (limited to 'modules/git_webhooks/gitea.py')
| -rw-r--r-- | modules/git_webhooks/gitea.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/git_webhooks/gitea.py b/modules/git_webhooks/gitea.py index 53172f6f..1a1074fe 100644 --- a/modules/git_webhooks/gitea.py +++ b/modules/git_webhooks/gitea.py @@ -215,7 +215,7 @@ class Gitea(object): if name: name = ": %s" % name author = utils.irc.bold(data["release"]["author"]["login"]) - return [["%s %s a release%s" % (author, action, name)], None] + return [["%s %s a release%s" % (author, action, name), None]] def fork(self, full_name, data): forker = utils.irc.bold(data["sender"]["login"]) |
