projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
591e384
)
[downloader/common] Remove debug output
author
Sergey M․
<dstftw@gmail.com>
Wed, 12 Oct 2016 14:22:33 +0000
(21:22 +0700)
committer
Sergey M․
<dstftw@gmail.com>
Wed, 12 Oct 2016 14:22:33 +0000
(21:22 +0700)
youtube_dl/downloader/common.py
patch
|
blob
|
history
diff --git
a/youtube_dl/downloader/common.py
b/youtube_dl/downloader/common.py
index 8482cbd8423dae254db7efff873588cd8fb10b8a..3dc144b4e19f208d4075d6423ce3278b3a614330 100644
(file)
--- a/
youtube_dl/downloader/common.py
+++ b/
youtube_dl/downloader/common.py
@@
-346,7
+346,6
@@
class FileDownloader(object):
min_sleep_interval = self.params.get('sleep_interval')
if min_sleep_interval:
max_sleep_interval = self.params.get('max_sleep_interval', min_sleep_interval)
- print(min_sleep_interval, max_sleep_interval)
sleep_interval = random.uniform(min_sleep_interval, max_sleep_interval)
self.to_screen('[download] Sleeping %s seconds...' % sleep_interval)
time.sleep(sleep_interval)