mirror of
https://gitlab.com/ytdl-org/youtube-dl.git
synced 2026-04-25 00:00:04 -04:00
d35dc344af
os.path.expandvars translates '%%' into '%' making output template invalid. Before: '%%(ext)s' -(expand path)-> '%(ext)s' -(outtmpl subst.)-> 'mp4' After: '%%(ext)s' -(outtmpl subst.)-> '%(ext)s' -(expand path)-> '%(ext)s'