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' % |