From 93276ab22e141d05fac54866d07b972e8553dbe8 Mon Sep 17 00:00:00 2001 From: "scheib@chromium.org" Date: Mon, 14 Oct 2013 23:55:32 +0000 Subject: [PATCH] Suggest interactive owners tool when suggesting owners. Review URL: https://codereview.chromium.org/27269002 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@228565 0039d316-1c4b-4281-b951-d872f2087c98 --- presubmit_canned_checks.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py index f75b9c861..816c7840a 100644 --- a/presubmit_canned_checks.py +++ b/presubmit_canned_checks.py @@ -823,8 +823,9 @@ def CheckOwners(input_api, output_api, source_file_filter=None, (needed, '\n '.join(sorted(missing_files))))] if not input_api.is_committing: suggested_owners = owners_db.reviewers_for(missing_files, owner_email) - output_list.append(output('Suggested OWNERS:\n %s' % - ('\n '.join(suggested_owners or [])))) + output_list.append(output('Suggested OWNERS: ' + + '(Use "git-cl owners" to interactively select owners.)\n %s' % + ('\n '.join(suggested_owners or [])))) return output_list if input_api.is_committing and not reviewers: