aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-03-08 22:09:42 +0600
committerSergey M․ <dstftw@gmail.com>2015-03-08 22:09:42 +0600
commite5a11a2293069b1acfa5eb5d2694ad4082dd9755 (patch)
treeb5dacfea7930adb78033803a2335b89668b8998e /youtube_dl/YoutubeDL.py
parentf18ef2d14463a13d80e967d1b18ece6a076f60fa (diff)
downloadyoutube-dl-e5a11a2293069b1acfa5eb5d2694ad4082dd9755.tar.xz
[YoutubeDL] Sanitize path before creating non-existent paths (Closes #4324)
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-xyoutube_dl/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 4b9151163..bce7587fd 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -1262,7 +1262,7 @@ class YoutubeDL(object):
return
try:
- dn = os.path.dirname(encodeFilename(filename))
+ dn = os.path.dirname(sanitize_path(encodeFilename(filename)))
if dn and not os.path.exists(dn):
os.makedirs(dn)
except (OSError, IOError) as err: