Jeremy White : Change test program to use committer_name.
Module: tools Branch: master Commit: 4f90d4c7976a13309747bb2c7b0c76a8461646ed URL: https://gitlab.winehq.org/winehq/tools/-/commit/4f90d4c7976a13309747bb2c7b0c... Author: Jeremy White <jwhite(a)codeweavers.com> Date: Tue Aug 9 16:26:03 2022 -0500 Change test program to use committer_name. This better simulates the test conditions we care about. --- gitlab/gitlab-to-mail/assign.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab/gitlab-to-mail/assign.py b/gitlab/gitlab-to-mail/assign.py index f5959d7a..56167a37 100755 --- a/gitlab/gitlab-to-mail/assign.py +++ b/gitlab/gitlab-to-mail/assign.py @@ -172,7 +172,7 @@ def main(argv): version = { 'commits' : [] } if args.committer: for commit in args.committer: - vcommit = { 'author_name' : commit } + vcommit = { 'author_name' : author['name'], 'committer_name': commit } version['commits'].append(vcommit) print(version) ids, names = a.get_assignees(args.files, author, version)
participants (1)
-
Alexandre Julliard