Private GIT

Skip to content
Snippets Groups Projects
Commit f4255a7f authored by Nic Wolfe's avatar Nic Wolfe
Browse files

How did that sneak in there? (don't replace all periods with dashes)

parent 4e4ba237
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@ def sanitizeFileName (name):
'''
# remove bad chars from the filename
name = re.sub(r'[\\/\*.]', '-', name)
name = re.sub(r'[\\/\*]', '-', name)
name = re.sub(r'[:"<>|?]', '', name)
# remove leading/trailing periods
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment