Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: presubmit_canned_checks.py

Issue 27269002: Suggest interactive owners tool when suggesting owners. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: presubmit_canned_checks.py
diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py
index f75b9c861c670dd01baefeb5fe61840ac14c9b00..816c7840a4b2bbd290b902853788220337bb9ded 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:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698