From d9b6c66c33d09b061bf2290e0706c05e79b1f3e7 Mon Sep 17 00:00:00 2001 From: 17acres Date: Thu, 6 May 2021 13:18:55 -0400 Subject: [PATCH] Fix 66696c5 so folder paths work properly --- export.py | 1 - 1 file changed, 1 deletion(-) diff --git a/export.py b/export.py index 29f9995..7b5f74e 100644 --- a/export.py +++ b/export.py @@ -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