Fix add_info_extractor when used via API

Bug from: 251ae04e6a
This commit is contained in:
pukkandan 2021-08-23 05:26:45 +05:30
parent 251ae04e6a
commit 8b7491c8d1
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
2 changed files with 18 additions and 12 deletions

View file

@ -66,7 +66,7 @@ def build_lazy_ie(ie, name):
if valid_url:
s += f' _VALID_URL = {valid_url!r}\n'
if not ie._WORKING:
s += f' _WORKING = False\n'
s += ' _WORKING = False\n'
if ie.suitable.__func__ is not InfoExtractor.suitable.__func__:
s += f'\n{getsource(ie.suitable)}'
if hasattr(ie, '_make_valid_url'):