Fix `--compat-options filename` (#629)

The correct default filename is `%(title)s-%(id)s.%(ext)s`

Authored by: stdedos
This commit is contained in:
Stavros Ntentos 2021-08-04 21:01:37 +03:00 committed by GitHub
parent 36576d7c4c
commit 9d65e7bd6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ def _real_main(argv=None):
outtmpl_default = opts.outtmpl.get('default')
if 'filename' in compat_opts:
if outtmpl_default is None:
outtmpl_default = '%(title)s.%(id)s.%(ext)s'
outtmpl_default = '%(title)s-%(id)s.%(ext)s'
opts.outtmpl.update({'default': outtmpl_default})
else:
_unused_compat_opt('filename')