Merge "Find target keywords in the first 100 lines."

This commit is contained in:
Treehugger Robot 2017-06-08 01:40:58 +00:00 committed by Gerrit Code Review
commit 61ddffc6af
1 changed files with 1 additions and 1 deletions

View File

@ -2427,7 +2427,7 @@ def parse_input_file(infile):
if warning_pattern.match(line): if warning_pattern.match(line):
line = normalize_warning_line(line) line = normalize_warning_line(line)
warning_lines.add(line) warning_lines.add(line)
elif line_counter < 50: elif line_counter < 100:
# save a little bit of time by only doing this for the first few lines # save a little bit of time by only doing this for the first few lines
line_counter += 1 line_counter += 1
m = re.search('(?<=^PLATFORM_VERSION=).*', line) m = re.search('(?<=^PLATFORM_VERSION=).*', line)