diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-08-20 20:30:29 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-08-20 20:30:29 +0700 |
commit | f83dda12ad37d1b83142e2821e72f8e6c0b4405e (patch) | |
tree | 36560b159924eadfaf31cd137a7023b54ef6a92a /youtube_dl | |
parent | 696d49815e082402be65c4f120397b4695477279 (diff) |
[teamcoco] Update video id regex
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 f8dd7e955..fa796ce72 100644 --- a/youtube_dl/extractor/teamcoco.py +++ b/youtube_dl/extractor/teamcoco.py @@ -37,7 +37,7 @@ class TeamcocoIE(InfoExtractor): video_id = mobj.group("video_id") if not video_id: video_id = self._html_search_regex( - r'<article class="video" data-id="(\d+?)"', + r'data-node-id="(\d+?)"', webpage, 'video id') data_url = 'http://teamcoco.com/cvp/2.0/%s.xml' % video_id |