Skip to content
Prev Previous commit
Next Next commit
Fix string
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
hugovk and AlexWaygood authored Sep 25, 2023
commit a85cd1c27ecde5e4e4d33afcae094b855b06a27e
2 changes: 1 addition & 1 deletion Tools/patchcheck/patchcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def ci(pull_request):
print('No whitespace issues found')
else:
count = len(fixed)
print(f'Please fix the {count} {n_files_str(count)} with whitespace issues')
print(f'Please fix the {n_files_str(count)} with whitespace issues')
print('(on Unix you can run `make patchcheck` to make the fixes)')
sys.exit(1)

Expand Down