[KeezMovies] Set _extract_info as non-fatal

This commit is contained in:
Parmjit Virk 2018-04-17 14:53:57 -05:00
parent 8e5d21b7f3
commit e643b7ebf5

View File

@ -128,7 +128,7 @@ class KeezMoviesIE(InfoExtractor):
}
def _real_extract(self, url):
webpage, info = self._extract_info(url)
webpage, info = self._extract_info(url, fatal=False)
if not info['formats']:
embed_url = self._search_regex(
r'<iframe\s+id="embedPlayer"\s+src="//(.+?)"', webpage, 'embed url', default=None)