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

Unified Diff: presubmit_canned_checks.py

Issue 13852011: Sort list of files that are missing OWNERS LGTM in presubmit check. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 8 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 | tests/presubmit_unittest.py » ('j') | 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 209d65434b2f1a9c4a6df8d4180131e209796898..285077d9b70e838f077e8fab718c205ab2981e8a 100644
--- a/presubmit_canned_checks.py
+++ b/presubmit_canned_checks.py
@@ -804,7 +804,7 @@ def CheckOwners(input_api, output_api, source_file_filter=None,
if missing_files:
output_list = [
output('Missing %s for these files:\n %s' %
- (needed, '\n '.join(missing_files)))]
+ (needed, '\n '.join(sorted(missing_files))))]
if not input_api.is_committing:
suggested_owners = owners_db.reviewers_for(affected_files, owner_email)
output_list.append(output('Suggested OWNERS:\n %s' %
« no previous file with comments | « no previous file | tests/presubmit_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698