mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-13 22:42:58 +01:00
[extractor/common] Use more generic URLError in _is_valid_url
This commit is contained in:
parent
50f01302d3
commit
943a1e24b8
@ -842,7 +842,7 @@ class InfoExtractor(object):
|
|||||||
self._request_webpage(url, video_id, 'Checking %s URL' % item)
|
self._request_webpage(url, video_id, 'Checking %s URL' % item)
|
||||||
return True
|
return True
|
||||||
except ExtractorError as e:
|
except ExtractorError as e:
|
||||||
if isinstance(e.cause, compat_HTTPError):
|
if isinstance(e.cause, compat_urllib_error.URLError):
|
||||||
self.to_screen(
|
self.to_screen(
|
||||||
'%s: %s URL is invalid, skipping' % (video_id, item))
|
'%s: %s URL is invalid, skipping' % (video_id, item))
|
||||||
return False
|
return False
|
||||||
|
Loading…
Reference in New Issue
Block a user