aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2017-02-23 11:54:43 +0100
committerRemita Amine <remitamine@gmail.com>2017-02-23 11:57:18 +0100
commit9e03aa75c779b79da79353ef1ecc4520ad06d6d0 (patch)
tree5f42e1605c2138c67a90d704deef45c08454bb4b
parent30eaa3a7023a3c03c62eb481f6415cb0599e0da5 (diff)
downloadyoutube-dl-9e03aa75c779b79da79353ef1ecc4520ad06d6d0.tar.xz
[crunchyroll] extract playlist entries ids
-rw-r--r--youtube_dl/extractor/crunchyroll.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/crunchyroll.py b/youtube_dl/extractor/crunchyroll.py
index d2b87442d..a1fc6a756 100644
--- a/youtube_dl/extractor/crunchyroll.py
+++ b/youtube_dl/extractor/crunchyroll.py
@@ -534,11 +534,11 @@ class CrunchyrollShowPlaylistIE(CrunchyrollBaseIE):
r'(?s)<h1[^>]*>\s*<span itemprop="name">(.*?)</span>',
webpage, 'title')
episode_paths = re.findall(
- r'(?s)<li id="showview_videos_media_[0-9]+"[^>]+>.*?<a href="([^"]+)"',
+ r'(?s)<li id="showview_videos_media_(\d+)"[^>]+>.*?<a href="([^"]+)"',
webpage)
entries = [
- self.url_result('http://www.crunchyroll.com' + ep, 'Crunchyroll')
- for ep in episode_paths
+ self.url_result('http://www.crunchyroll.com' + ep, 'Crunchyroll', ep_id)
+ for ep_id, ep in episode_paths
]
entries.reverse()