Skip to content

Commit 697495b

Browse files
authored
Fix copy / paste oversight (TheAlgorithms#2448)
1 parent 363858e commit 697495b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/validate_filenames.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
hyphen_files = [file for file in filepaths if "-" in file]
2121
if hyphen_files:
22-
print(f"{len(hyphen_files)} files contain space characters:")
22+
print(f"{len(hyphen_files)} files contain hyphen characters:")
2323
print("\n".join(hyphen_files) + "\n")
2424

2525
nodir_files = [file for file in filepaths if os.sep not in file]

0 commit comments

Comments
 (0)