Closes #3173
This commit is contained in:
pukkandan 2022-03-24 06:53:11 +05:30
parent 700ccbe3f1
commit 231025c463
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
3 changed files with 5 additions and 5 deletions

View file

@ -94,9 +94,9 @@ def print_extractor_information(opts, urls):
for ie in list_extractors(opts.age_limit):
if not ie.working():
continue
desc = getattr(ie, 'IE_DESC', ie.IE_NAME)
if desc is False:
if ie.IE_DESC is False:
continue
desc = ie.IE_DESC or ie.IE_NAME
if getattr(ie, 'SEARCH_KEY', None) is not None:
_SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
_COUNTS = ('', '5', '10', 'all')