From: Jaime Marquínez Ferrándiz Date: Wed, 11 Sep 2013 15:37:57 +0000 (+0200) Subject: Merge branch 'subtitles_rework' (closes PR #1326) X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=542cca0e8c51ef7ad752911f5f671f1c72a87eb6;hp=7fad1c6328b02ba9f23d37f374a05255abfe38a6;p=youtube-dl.git Merge branch 'subtitles_rework' (closes PR #1326) --- diff --git a/youtube_dl/extractor/howcast.py b/youtube_dl/extractor/howcast.py index 6104c4b5e..46954337f 100644 --- a/youtube_dl/extractor/howcast.py +++ b/youtube_dl/extractor/howcast.py @@ -19,8 +19,7 @@ class HowcastIE(InfoExtractor): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') - webpage_url = 'http://www.howcast.com/videos/' + video_id - webpage = self._download_webpage(webpage_url, video_id) + webpage = self._download_webpage(url, video_id) self.report_extraction(video_id)