Add additional illegal characters to removal list in filename processing

This commit is contained in:
2025-02-20 22:16:51 +01:00
parent 5e6038f80b
commit b0bfbe61a0

View File

@ -102,6 +102,8 @@ def remove_illegal_chars(file_name: str) -> str:
"+",
"$",
",",
"#",
"%",
]
for character in illegal_characters:
filename: str = filename.replace(character, "")