youtube-dl

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

commit 6f9b54933f1380423258fa7fe478e002ca97027b
parent 1bbe317508fa151336034eda4809d0fea1684667
Author: Naglis Jonaitis <njonaitis@gmail.com>
Date:   Mon, 15 Dec 2014 03:32:17 +0200

[streamcloud] Modernize

Diffstat:
Myoutube_dl/extractor/streamcloud.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/streamcloud.py b/youtube_dl/extractor/streamcloud.py @@ -40,8 +40,7 @@ class StreamcloudIE(InfoExtractor): ''', orig_webpage) post = compat_urllib_parse.urlencode(fields) - self.to_screen('%s: Waiting for timeout' % video_id) - time.sleep(12) + self._sleep(12, video_id) headers = { b'Content-Type': b'application/x-www-form-urlencoded', }