[ROMM-2746] Drop + from filenames on update

This commit is contained in:
Georges-Antoine Assi
2025-12-07 17:45:21 -05:00
parent f1fb0c726e
commit d189faf25d

View File

@@ -31,7 +31,7 @@ def iter_directories(path: str, recursive: bool = False) -> Iterator[tuple[Path,
INVALID_CHARS_HYPHENS = re.compile(r"[\\/:|]")
INVALID_CHARS_EMPTY = re.compile(r'[*?"<>]')
INVALID_CHARS_EMPTY = re.compile(r'[*?"<>+]')
def sanitize_filename(filename: str) -> str: