diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-11-10 04:14:42 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-11-10 04:19:54 +0530 |
commit | c586f9e8dee3c6f2aac10e828751cac592b6ba14 (patch) | |
tree | 21f56a821295d30f75ab06890fea3bef8dc6b2c7 /yt_dlp/postprocessor/__init__.py | |
parent | 59a7a13ef99888c1403e985bdfc6cdca5c748f10 (diff) |
[cleanup] minor fixes
Diffstat (limited to 'yt_dlp/postprocessor/__init__.py')
-rw-r--r-- | yt_dlp/postprocessor/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/yt_dlp/postprocessor/__init__.py b/yt_dlp/postprocessor/__init__.py index 07c87b76a..4ae230d2f 100644 --- a/yt_dlp/postprocessor/__init__.py +++ b/yt_dlp/postprocessor/__init__.py @@ -2,6 +2,7 @@ from ..utils import load_plugins +from .common import PostProcessor from .embedthumbnail import EmbedThumbnailPP from .exec import ExecPP, ExecAfterDownloadPP from .ffmpeg import ( @@ -39,5 +40,5 @@ def get_postprocessor(key): return globals()[key + 'PP'] -__all__ = [name for name in globals().keys() if name.endswith('IE')] -__all__.append('FFmpegPostProcessor') +__all__ = [name for name in globals().keys() if name.endswith('PP')] +__all__.extend(('PostProcessor', 'FFmpegPostProcessor')) |