From: Philipp Hagemeister Date: Mon, 18 Feb 2013 21:32:56 +0000 (+0100) Subject: Fix MyVideo IE X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=6d4363368affe197f1c3efbd34d18b365c3d929d;p=youtube-dl Fix MyVideo IE --- diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 627329ecd..d7ddf4e37 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -2233,7 +2233,7 @@ class MyVideoIE(InfoExtractor): webpage = self._download_webpage(webpage_url, video_id) self.report_extraction(video_id) - mobj = re.search(r'', + mobj = re.search(r'', webpage) if mobj is None: self._downloader.trouble(u'ERROR: unable to extract media URL')