[escapist] Filter video differently (Fixes #4919)

This commit is contained in:
Philipp Hagemeister 2015-02-10 15:55:51 +01:00
parent 596ac6e31f
commit 9650885be9
2 changed files with 5 additions and 2 deletions

View file

@ -271,7 +271,7 @@ class InfoExtractor(object):
raise
except compat_http_client.IncompleteRead as e:
raise ExtractorError('A network error has occured.', cause=e, expected=True)
except (KeyError,) as e:
except (KeyError, StopIteration) as e:
raise ExtractorError('An extractor error has occured.', cause=e)
def set_downloader(self, downloader):