diff options
author | Matthew <coletdjnz@protonmail.com> | 2023-01-02 04:55:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 04:55:11 +0000 |
commit | e756f45ba0648f972be71ce328419a623e381028 (patch) | |
tree | 39fd427fe2ce2725b0b84bf0c6d719ff090d166d /yt_dlp/extractor/extractors.py | |
parent | 8c53322cda75394a8d551dde20b2529ee5ad6e89 (diff) |
Improve handling for overriding extractors with plugins (#5916)
* Extractors replaced with plugin extractors now show in debug output
* Better testcase handling
* Added documentation
Authored by: coletdjnz, pukkandan
Diffstat (limited to 'yt_dlp/extractor/extractors.py')
-rw-r--r-- | yt_dlp/extractor/extractors.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/yt_dlp/extractor/extractors.py b/yt_dlp/extractor/extractors.py index beda02917..baa69d242 100644 --- a/yt_dlp/extractor/extractors.py +++ b/yt_dlp/extractor/extractors.py @@ -24,3 +24,5 @@ if not _LAZY_LOADER: globals().update(_PLUGIN_CLASSES) _ALL_CLASSES[:0] = _PLUGIN_CLASSES.values() + +from .common import _PLUGIN_OVERRIDES # noqa: F401 |