summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--module/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/utils.py b/module/utils.py
index 42dc9e1cc..05ff38a22 100644
--- a/module/utils.py
+++ b/module/utils.py
@@ -36,7 +36,7 @@ def remove_chars(string, repl):
def save_path(name):
#remove some chars
if os.name == 'nt':
- return remove_chars(name, '/\\?%*:|"<>')
+ return remove_chars(name, '/?%*|"<>')
else:
return remove_chars(name, '/\\"')