X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=sidebyside;f=youtube_dl%2Fextractor%2Fjustintv.py;h=b2006e33499a31096d516b88e01c9f81f14392a6;hb=c90f13d1067067e0532dfc1666c1743366bc4d31;hp=9c46baed56d27fbb6229db266ea6bc64555254b0;hpb=79e93125d0df50704ac32da5977c7d85e26b6976;p=youtube-dl diff --git a/youtube_dl/extractor/justintv.py b/youtube_dl/extractor/justintv.py index 9c46baed5..b2006e334 100644 --- a/youtube_dl/extractor/justintv.py +++ b/youtube_dl/extractor/justintv.py @@ -34,11 +34,11 @@ class JustinTVIE(InfoExtractor): # Return count of items, list of *valid* items def _parse_page(self, url, video_id): - webpage = self._download_webpage(url, video_id, - u'Downloading video info JSON', - u'unable to download video info JSON') + info_json = self._download_webpage(url, video_id, + u'Downloading video info JSON', + u'unable to download video info JSON') - response = json.loads(webpage) + response = json.loads(info_json) if type(response) != list: error_text = response.get('error', 'unknown error') raise ExtractorError(u'Justin.tv API: %s' % error_text)