summaryrefslogtreecommitdiffstats
path: root/module/utils.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-12 15:48:33 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-12 15:48:33 +0100
commit62ee344adddf982316dd1e1429837cffd2e229de (patch)
tree8eff3aa4aaa08a6136f2d303c42bec8719fda755 /module/utils.py
parent[Captcha9kw] Fix some stuff (thx stefanos) (diff)
downloadpyload-62ee344adddf982316dd1e1429837cffd2e229de.tar.xz
Don't purge slash symbol on unix when save_path
Diffstat (limited to 'module/utils.py')
-rw-r--r--module/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/utils.py b/module/utils.py
index 05ff38a22..4406eafde 100644
--- a/module/utils.py
+++ b/module/utils.py
@@ -38,7 +38,7 @@ def save_path(name):
if os.name == 'nt':
return remove_chars(name, '/?%*|"<>')
else:
- return remove_chars(name, '/\\"')
+ return remove_chars(name, '\\"')
def save_join(*args):