diff options
author | Naglis Jonaitis <njonaitis@gmail.com> | 2014-12-15 03:32:17 +0200 |
---|---|---|
committer | Naglis Jonaitis <njonaitis@gmail.com> | 2014-12-15 03:32:17 +0200 |
commit | 6f9b54933f1380423258fa7fe478e002ca97027b (patch) | |
tree | d669c693b155a64b93e4fe228a32d455fb651649 | |
parent | 1bbe317508fa151336034eda4809d0fea1684667 (diff) |
[streamcloud] Modernize
-rw-r--r-- | youtube_dl/extractor/streamcloud.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/extractor/streamcloud.py b/youtube_dl/extractor/streamcloud.py index 38176498d..fd0cd3c0c 100644 --- 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', } |