mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
Fix --windows-filenames
removing /
from UNIX paths
:ci skip all
This commit is contained in:
parent
a17417e8ca
commit
c4218ac3f1
1 changed files with 3 additions and 0 deletions
|
@ -2128,6 +2128,7 @@ def replace_insane(char):
|
|||
def sanitize_path(s, force=False):
|
||||
"""Sanitizes and normalizes path on Windows"""
|
||||
if sys.platform == 'win32':
|
||||
force = False
|
||||
drive_or_unc, _ = os.path.splitdrive(s)
|
||||
if sys.version_info < (2, 7) and not drive_or_unc:
|
||||
drive_or_unc, _ = os.path.splitunc(s)
|
||||
|
@ -2144,6 +2145,8 @@ def sanitize_path(s, force=False):
|
|||
for path_part in norm_path]
|
||||
if drive_or_unc:
|
||||
sanitized_path.insert(0, drive_or_unc + os.path.sep)
|
||||
elif force and s[0] == os.path.sep:
|
||||
sanitized_path.insert(0, os.path.sep)
|
||||
return os.path.join(*sanitized_path)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue