diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-07-25 09:34:56 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-07-25 09:34:56 +0200 |
commit | 09eeb75130bf703cd5a84f99634b86589ec7159e (patch) | |
tree | cfd92d63e0873ece8443592c93f85f1a7ec7edc4 /youtube_dl | |
parent | 0a99956f711d492c6ca08cd086d3d4b5024fd10f (diff) | |
parent | 12ef6aefa8ef5b8959a1b51788dd42cc33a4fe5c (diff) |
Merge remote-tracking branch 'pishposhmcgee/patch-2'
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/teamcoco.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/teamcoco.py b/youtube_dl/extractor/teamcoco.py index ec92e589a..c910110ca 100644 --- a/youtube_dl/extractor/teamcoco.py +++ b/youtube_dl/extractor/teamcoco.py @@ -33,7 +33,7 @@ class TeamcocoIE(InfoExtractor): data_url = 'http://teamcoco.com/cvp/2.0/%s.xml' % video_id data = self._download_webpage(data_url, video_id, 'Downloading data webpage') - video_url = self._html_search_regex(r'<file type="high".*?>(.*?)</file>', + video_url = self._html_search_regex(r'<file [^>]*type="high".*?>(.*?)</file>', data, u'video URL') return [{ |