Fix 66696c5 so folder paths work properly

This commit is contained in:
17acres 2021-05-06 13:18:55 -04:00
parent 63151c3075
commit d9b6c66c33
1 changed files with 0 additions and 1 deletions

View File

@ -155,7 +155,6 @@ def makeValidFolderPath(input_str):
valid_chars = "-_.()/ %s%s" % (string.ascii_letters, string.digits)
input_str = input_str.replace("+"," ") # Canvas default for spaces
input_str = input_str.replace(":","-")
input_str = input_str.replace("/","-")
input_str = "".join(c for c in input_str if c in valid_chars)
# Remove leading and trailing whitespace, separators