aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-01-28 03:29:10 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-01-28 03:29:10 +0100
commitc1e60cc2bf4d0130dac154e9014913e7d63d25ff (patch)
treedc9d5354315bcb4fcff3c44d814a2d2949c06ae2 /youtube_dl
parent117bec936c18e9c3b1d467c8710075ed4376e254 (diff)
parent98669ed79c10bbcfc5678a520de98df79ca6b1b4 (diff)
downloadyoutube-dl-c1e60cc2bf4d0130dac154e9014913e7d63d25ff.tar.xz
Merge remote-tracking branch 'dstftw/master'
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/imdb.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/youtube_dl/extractor/imdb.py b/youtube_dl/extractor/imdb.py
index 1763af020..7cee505c0 100644
--- a/youtube_dl/extractor/imdb.py
+++ b/youtube_dl/extractor/imdb.py
@@ -69,12 +69,9 @@ class ImdbListIE(InfoExtractor):
list_id = mobj.group('id')
webpage = self._download_webpage(url, list_id)
- list_code = self._search_regex(
- r'(?s)<div\s+class="list\sdetail">(.*?)class="see-more"',
- webpage, 'list code')
entries = [
self.url_result('http://www.imdb.com' + m, 'Imdb')
- for m in re.findall(r'href="(/video/imdb/vi[^"]+)"', webpage)]
+ for m in re.findall(r'href="(/video/imdb/vi[^"]+)"\s+data-type="playlist"', webpage)]
list_title = self._html_search_regex(
r'<h1 class="header">(.*?)</h1>', webpage, 'list title')