commit | d48aa437c9e843e9d2486cdcdc9d7ba812deea40 | [log] [tgz] |
---|---|---|
author | Stephen Martinis <martiniss@google.com> | Wed Jan 06 23:38:41 2021 +0000 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Jan 06 23:38:41 2021 +0000 |
tree | d19343f919979f4bdca70c694dcfad1c81758577 | |
parent | 6650f7c2385e1d5087a34cf05f4867498c10e86b [diff] [blame] |
Followup fix for https://crrev.com/c/2587268 https://crrev.com/c/2587268 changed function signatures to remove a project argument. One function call was missed in the CL. This CL fixes the function call. Change-Id: Ice45072aa467ed6c56efabf405a7aac03f4b047c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2613785 Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: Stephen Martinis <martiniss@chromium.org>
diff --git a/git_cl.py b/git_cl.py index dae4a83..d3b2ce5 100755 --- a/git_cl.py +++ b/git_cl.py
@@ -1384,7 +1384,7 @@ f for f in files if status[f] == owners_client.INSUFFICIENT_REVIEWERS ] - add_owners = client.SuggestOwners(project, branch, missing_files) + add_owners = client.SuggestOwners(missing_files) change_description.update_reviewers( options.reviewers, options.tbrs, options.add_owners_to, add_owners)