diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-05-29 20:20:11 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-05-29 20:20:11 +0700 |
commit | 5c6b1e578cfe0b2de2d52b026b04a032688df979 (patch) | |
tree | f4300a5f2577d2f18b13b72563bb96bb1e714b50 /youtube_dl/extractor | |
parent | 8f0c8fb45282caa706c267700f51734bb474fefc (diff) |
[ustream] Remove unnecessary webpage download
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/ustream.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ustream.py b/youtube_dl/extractor/ustream.py index eb2944573..f326163a3 100644 --- a/youtube_dl/extractor/ustream.py +++ b/youtube_dl/extractor/ustream.py @@ -29,7 +29,6 @@ class UstreamIE(InfoExtractor): if m.group('type') == 'embed/recorded': # some sites use this embed format (see: http://github.com/rg3/youtube-dl/issues/2990) video_id = m.group('videoID') - webpage = self._download_webpage(url, video_id, note="Downloading embedded Ustream page") desktop_url = 'http://www.ustream.tv/recorded/' + video_id return self.url_result(desktop_url, 'Ustream') if m.group('type') == 'embed': |