Browse Source

[downloader/common] Always skip "already downloaded" check when outputting to stdout

totalwebcasting
Sergey M․ 9 years ago
parent
commit
964e7b2dd0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/downloader/common.py

+ 1
- 1
youtube_dl/downloader/common.py View File

@ -325,7 +325,7 @@ class FileDownloader(object):
)
# 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._hook_progress({
'filename': filename,


Loading…
Cancel
Save