1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 13:41:00 +02:00

[nhl:videocenter] Fix playlist title extraction

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-10-22 21:01:16 +02:00
parent fe7e0c9825
commit ce68b5907c

View File

@ -90,8 +90,8 @@ def _real_extract(self, url):
r'{statusIndex:0,index:0,.*?id:(.*?),'],
webpage, u'category id')
playlist_title = self._html_search_regex(
r'\?catid=%s">(.*?)</a>' % cat_id,
webpage, u'playlist title', flags=re.DOTALL)
r'tab0"[^>]*?>(.*?)</td>',
webpage, u'playlist title', flags=re.DOTALL).lower().capitalize()
data = compat_urllib_parse.urlencode({
'cid': cat_id,