diff options
| -rw-r--r-- | youtube_dl/extractor/historicfilms.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/historicfilms.py b/youtube_dl/extractor/historicfilms.py index 40afbe537..6a36933ac 100644 --- a/youtube_dl/extractor/historicfilms.py +++ b/youtube_dl/extractor/historicfilms.py @@ -25,7 +25,8 @@ class HistoricFilmsIE(InfoExtractor):          webpage = self._download_webpage(url, video_id)          tape_id = self._search_regex( -            r'class="tapeId">([^<]+)<', webpage, 'tape id') +            [r'class="tapeId"[^>]*>([^<]+)<', r'tapeId\s*:\s*"([^"]+)"'], +            webpage, 'tape id')          title = self._og_search_title(webpage)          description = self._og_search_description(webpage) | 
