summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-02 04:26:20 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-02 04:26:20 +0600
commitc90d16cf36d8edf03f4dc923ee9dbeadca910844 (patch)
treea1634318f2b5b5a23ecdab0df4da9d446df0ede5
parentab6ca0480280abb2a35a54e1b380bbae07a48863 (diff)
downloadyoutube-dl-c90d16cf36d8edf03f4dc923ee9dbeadca910844.tar.gz
youtube-dl-c90d16cf36d8edf03f4dc923ee9dbeadca910844.tar.xz
youtube-dl-c90d16cf36d8edf03f4dc923ee9dbeadca910844.zip
[utils:sanitize_path] Disallow trailing whitespace in path segment (Closes #7332)
-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 efd5f4ae1..7b3f79141 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -366,7 +366,7 @@ def sanitize_path(s):
     if drive_or_unc:
         norm_path.pop(0)
     sanitized_path = [
-        path_part if path_part in ['.', '..'] else re.sub('(?:[/<>:"\\|\\\\?\\*]|\.$)', '#', path_part)
+        path_part if path_part in ['.', '..'] else re.sub('(?:[/<>:"\\|\\\\?\\*]|[\s.]$)', '#', path_part)
         for path_part in norm_path]
     if drive_or_unc:
         sanitized_path.insert(0, drive_or_unc + os.path.sep)