diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-05-13 19:54:07 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-05-13 19:54:07 +0200 |
commit | 419c64b107896628a159f558abdb298117249b9a (patch) | |
tree | c55ab997b7e49ef7e49152ae98b0c1db4e03392f /youtube_dl/InfoExtractors.py | |
parent | 99a5ae3f8ed30ee7b6fb723232895d7836afbc2d (diff) |
Throw a better error if the protocol is invalid
Diffstat (limited to 'youtube_dl/InfoExtractors.py')
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index ce959a6df..6d6203a1c 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -1304,6 +1304,8 @@ class GenericIE(InfoExtractor): opener.add_handler(handler()) response = opener.open(HeadRequest(url)) + if response is None: + raise ExtractorError(u'Invalid URL protocol') new_url = response.geturl() if url == new_url: |