mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
Sort IEs alphabetically in --list-extractors
This commit is contained in:
parent
53936f3d57
commit
7dba9cd039
1 changed files with 1 additions and 1 deletions
|
@ -420,7 +420,7 @@ def _real_main(argv=None):
|
|||
extractors = gen_extractors()
|
||||
|
||||
if opts.list_extractors:
|
||||
for ie in extractors:
|
||||
for ie in sorted(extractors, key=lambda ie: ie.IE_NAME.lower()):
|
||||
compat_print(ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie._WORKING else ''))
|
||||
matchedUrls = [url for url in all_urls if ie.suitable(url)]
|
||||
all_urls = [url for url in all_urls if url not in matchedUrls]
|
||||
|
|
Loading…
Reference in a new issue