aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-03-08 22:08:48 +0600
committerSergey M․ <dstftw@gmail.com>2015-03-08 22:08:48 +0600
commitf18ef2d14463a13d80e967d1b18ece6a076f60fa (patch)
tree0516a7bee703a243dc33fea502c4dbf7c8ca43b1 /youtube_dl
parent1bb5c511a551ba7c5d3179d2d3a124f0977e74b4 (diff)
downloadyoutube-dl-f18ef2d14463a13d80e967d1b18ece6a076f60fa.tar.xz
[utils] Disallow trailing dot in sanitize_path for a path part
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index e511232ca..d5597d514 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -319,7 +319,7 @@ def sanitize_path(s):
if unc_or_drive:
norm_path.pop(0)
sanitized_path = [
- re.sub('[/<>:"\\|\\\\?\\*]', '#', path_part)
+ re.sub('(?:[/<>:"\\|\\\\?\\*]|\.$)', '#', path_part)
for path_part in norm_path]
if unc_or_drive:
sanitized_path.insert(0, unc_or_drive + os.path.sep)