diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-04-05 21:40:43 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-04-05 21:40:43 +0600 |
commit | 995cf05c96e888f7f1a818f9886345ea25671aa4 (patch) | |
tree | 51ea84f0b07853b11c3d1c35e697bd87be7e5bca /youtube_dl/extractor/novamov.py | |
parent | 5bf28d7864d83be98233b6d1e478d7911f99e2cb (diff) |
[novamov] Make title fatal
Diffstat (limited to 'youtube_dl/extractor/novamov.py')
-rw-r--r-- | youtube_dl/extractor/novamov.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/novamov.py b/youtube_dl/extractor/novamov.py index a131f7dbd..63a77b9bf 100644 --- a/youtube_dl/extractor/novamov.py +++ b/youtube_dl/extractor/novamov.py @@ -81,7 +81,7 @@ class NovaMovIE(InfoExtractor): filekey = extract_filekey() - title = self._html_search_regex(self._TITLE_REGEX, webpage, 'title', fatal=False) + title = self._html_search_regex(self._TITLE_REGEX, webpage, 'title') description = self._html_search_regex(self._DESCRIPTION_REGEX, webpage, 'description', default='', fatal=False) api_response = self._download_webpage( |