diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2014-01-13 20:15:31 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2014-01-13 20:15:31 +0100 |
commit | 8525f2b4e6ccbd1030bbe0f044f53e3c1206c250 (patch) | |
tree | 41068032d96f8f9cefb16c832272ea8b9425c4d5 /pyload/utils | |
parent | fixed setup (diff) | |
download | pyload-8525f2b4e6ccbd1030bbe0f044f53e3c1206c250.tar.xz |
small fixes and improvements for download engine
Diffstat (limited to 'pyload/utils')
-rw-r--r-- | pyload/utils/fs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/utils/fs.py b/pyload/utils/fs.py index 939adb87c..95fcd9e9f 100644 --- a/pyload/utils/fs.py +++ b/pyload/utils/fs.py @@ -51,7 +51,7 @@ def listdir(path): def safe_filename(name): #remove some chars if os.name == 'nt': - return remove_chars(name, '/\\?%*:|"<>,') + return remove_chars(name, '/\\?%*:;|"<>,') else: return remove_chars(name, '/\\"') |