Index: presubmit_canned_checks.py |
diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py |
index f75b9c861c670dd01baefeb5fe61840ac14c9b00..929fa5e62db6fa9eb8c04eb4e8e5e6c6028053b0 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 "owners" command to interactively select owners.)\n %s' % |
Dirk Pranke
2013/10/14 23:33:03
"git-cl owners", maybe?
scheib
2013/10/14 23:53:14
Done.
|
+ ('\n '.join(suggested_owners or [])))) |
return output_list |
if input_api.is_committing and not reviewers: |