summaryrefslogtreecommitdiffstats
path: root/chromium/build/ios/PRESUBMIT.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/build/ios/PRESUBMIT.py')
-rw-r--r--chromium/build/ios/PRESUBMIT.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/chromium/build/ios/PRESUBMIT.py b/chromium/build/ios/PRESUBMIT.py
index 7f3dacd1d74..a0d32f8b9e1 100644
--- a/chromium/build/ios/PRESUBMIT.py
+++ b/chromium/build/ios/PRESUBMIT.py
@@ -16,10 +16,13 @@ def _CheckWhitelistSorted(input_api, output_api):
for path in input_api.LocalPaths():
if WHITELIST_FILE == path:
lines = open(os.path.join('../..', WHITELIST_FILE)).readlines()
- sorted = all(lines[i] <= lines[i + 1] for i in xrange(len(lines) - 1))
- if not sorted:
+ i = 0
+ while i < len(lines) - 1 and lines[i] <= lines[i + 1]:
+ i += 1
+ if i < len(lines) - 1:
return [output_api.PresubmitError(
- 'The file ' + WHITELIST_FILE + ' must be sorted.')]
+ 'The file ' + WHITELIST_FILE + ' must be sorted. ' +
+ 'First offending line: #' + str(i + 2))]
return []
def _CommonChecks(input_api, output_api):