Merge c242fa5be3 into merged_master (Bitcoin PR bitcoin/bitcoin#31858)

This commit is contained in:
Tom Trevethan 2026-04-15 14:16:06 +01:00
commit ba19ec7816

View file

@ -91,7 +91,7 @@ def check_all_filenames(files) -> int:
for filename in filenames:
if not filename_regex.match(filename):
print(
f"""File {repr(filename)} does not not match the allowed filename regexp ('{ALLOWED_FILENAME_REGEXP}')."""
f"""File {repr(filename)} does not match the allowed filename regexp ('{ALLOWED_FILENAME_REGEXP}')."""
)
failed_tests += 1
return failed_tests