Skip to content

Commit

Permalink
Fix copy / paste oversight (TheAlgorithms#2448)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored and stokhos committed Jan 3, 2021
1 parent c822259 commit 3712688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/validate_filenames.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

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

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

0 comments on commit 3712688

Please sign in to comment.