mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[downloader/common] Always skip "already downloaded" check when outputting to stdout
This commit is contained in:
parent
f101079ae0
commit
964e7b2dd0
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ def download(self, filename, info_dict):
|
||||||
)
|
)
|
||||||
|
|
||||||
# Check file already present
|
# Check file already present
|
||||||
if filename != '-' and nooverwrites_and_exists or continuedl_and_exists:
|
if filename != '-' and (nooverwrites_and_exists or continuedl_and_exists):
|
||||||
self.report_file_already_downloaded(filename)
|
self.report_file_already_downloaded(filename)
|
||||||
self._hook_progress({
|
self._hook_progress({
|
||||||
'filename': filename,
|
'filename': filename,
|
||||||
|
|
Loading…
Reference in a new issue