[extractor/generic] Clarify generic extraction warning

This commit is contained in:
Sergey M․ 2015-06-24 03:08:24 +06:00
parent 0072afca8e
commit 2fece970b8
1 changed files with 4 additions and 4 deletions

View File

@ -977,10 +977,10 @@ class GenericIE(InfoExtractor):
'upload_date': upload_date, 'upload_date': upload_date,
} }
if (not self._downloader.params.get('test', False) and if not self._downloader.params.get('test', False) and not is_intentional:
not is_intentional and force = self._downloader.params.get('force_generic_extractor', False)
not self._downloader.params.get('force_generic_extractor', False)): self._downloader.report_warning(
self._downloader.report_warning('Falling back on generic information extractor.') '%s on generic information extractor.' % ('Forcing' if force else 'Falling back'))
if not full_response: if not full_response:
request = compat_urllib_request.Request(url) request = compat_urllib_request.Request(url)