aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/common.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-10 15:55:51 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-10 15:55:51 +0100
commit9650885be954b3cc626205aa67f24c31f21da7b6 (patch)
tree3233b7855b836a01228dca99c0b197956be74772 /youtube_dl/extractor/common.py
parent596ac6e31f6baaadf8280e2c54ca90a7cf2fbc2a (diff)
downloadyoutube-dl-9650885be954b3cc626205aa67f24c31f21da7b6.tar.xz
[escapist] Filter video differently (Fixes #4919)
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 382e846c5..8d71494b4 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -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):