From 8525f2b4e6ccbd1030bbe0f044f53e3c1206c250 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Mon, 13 Jan 2014 20:15:31 +0100 Subject: small fixes and improvements for download engine --- pyload/utils/fs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyload/utils/fs.py') 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, '/\\"') -- cgit v1.2.3