use _filename for dealing with separate tmp directories (fixes #239)
This commit is contained in:
parent
d87a88d5bb
commit
26112c39cc
|
|
@ -71,7 +71,7 @@ class Download:
|
||||||
)})
|
)})
|
||||||
def put_status_postprocessor(d):
|
def put_status_postprocessor(d):
|
||||||
if d['postprocessor'] == 'MoveFiles' and d['status'] == 'finished':
|
if d['postprocessor'] == 'MoveFiles' and d['status'] == 'finished':
|
||||||
self.status_queue.put({'status': 'finished', 'filename': d['info_dict']['filepath']})
|
self.status_queue.put({'status': 'finished', 'filename': d['info_dict']['_filename']})
|
||||||
ret = yt_dlp.YoutubeDL(params={
|
ret = yt_dlp.YoutubeDL(params={
|
||||||
'quiet': True,
|
'quiet': True,
|
||||||
'no_color': True,
|
'no_color': True,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue