youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 964e7b2dd09099bd021a770522684716f341db43
parent f101079ae02560fee2df1ea0cacb1989eefc8e6c
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 12 Oct 2015 00:43:54 +0600

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

Diffstat:
Myoutube_dl/downloader/common.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py @@ -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,