Skip to content

Commit

Permalink
tweak fail message
Browse files Browse the repository at this point in the history
  • Loading branch information
aerickson committed Jul 26, 2024
1 parent 8965393 commit 1353671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tf_authoritative_scanner/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def run(self):
for line_number, line in lines:
print(f"AUTHORITATIVE: {file_path}:{line_number}: {line}")
authoritative_files = len(all_authoritative_lines)
print(f"ERROR: {authoritative_files} of {total_files} scanned files are authoritative.")
print(f"FAIL: {authoritative_files} of {total_files} scanned files are authoritative.")
sys.exit(1)
else:
authoritative_files = len(all_authoritative_lines)
Expand Down

0 comments on commit 1353671

Please sign in to comment.