diff --git a/Scripts/utils.py b/Scripts/utils.py index 8f61a08..674a088 100755 --- a/Scripts/utils.py +++ b/Scripts/utils.py @@ -156,8 +156,8 @@ class Utils: # Remove redundant slashes path = re.sub(r'/+', '/', path) else: - # Replace backslashes with forward slashes - path = path.replace('\\', '/') + # Remove backslashes + path = path.replace('\\', '') # Normalize the path path = os.path.normpath(path)