projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f101079
)
[downloader/common] Always skip "already downloaded" check when outputting to stdout
author
Sergey M․
<dstftw@gmail.com>
Sun, 11 Oct 2015 18:43:54 +0000
(
00:43
+0600)
committer
Sergey M․
<dstftw@gmail.com>
Sun, 11 Oct 2015 18:43:54 +0000
(
00:43
+0600)
youtube_dl/downloader/common.py
patch
|
blob
|
history
diff --git
a/youtube_dl/downloader/common.py
b/youtube_dl/downloader/common.py
index 97e755d4baa56972a9a4e5223a6871edd8bf0565..29a4500d3a02920ec586d38338c659ff4c43124c 100644
(file)
--- 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,