[extractor/common] Relax valid url check verbosity
This commit is contained in:
parent
4d52f2eb7f
commit
baa43cbaf0
|
@ -786,8 +786,8 @@ class InfoExtractor(object):
|
||||||
return True
|
return True
|
||||||
except ExtractorError as e:
|
except ExtractorError as e:
|
||||||
if isinstance(e.cause, compat_HTTPError):
|
if isinstance(e.cause, compat_HTTPError):
|
||||||
self.report_warning(
|
self.to_screen(
|
||||||
'%s URL is invalid, skipping' % item, video_id)
|
'%s: %s URL is invalid, skipping' % (video_id, item))
|
||||||
return False
|
return False
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue