fix output filename template
This commit is contained in:
parent
e7ad85fac9
commit
c17b3df3f5
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ class DelojzaBot:
|
||||||
ydl_opts = {
|
ydl_opts = {
|
||||||
'noplaylist': True,
|
'noplaylist': True,
|
||||||
'restrictfilenames': True,
|
'restrictfilenames': True,
|
||||||
'outtmpl': os.path.join(self.tmp_dir, datestr(date), '__%(title)s__%(id)s.%(ext)s') # HOW?
|
'outtmpl': os.path.join(self.tmp_dir, '{}__%(title)s__%(id)s.%(ext)s'.format(datestr(date)))
|
||||||
}
|
}
|
||||||
if extract:
|
if extract:
|
||||||
ydl_opts['format'] = 'bestaudio'
|
ydl_opts['format'] = 'bestaudio'
|
||||||
|
|
Loading…
Reference in a new issue