[cleanup] minor fixes
This commit is contained in:
parent
59a7a13ef9
commit
c586f9e8de
6 changed files with 18 additions and 16 deletions
|
|
@ -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'))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue