Moved from os.system to subprocess.call
[youtube-dl] / youtube_dl / postprocessor / __init__.py
index 08e6ddd00cbfe5691fb14943d6b2217748e96398..15aa0daa9b7b69b5710096ecb099f62e6ab51f3d 100644 (file)
@@ -9,6 +9,7 @@ from .ffmpeg import (
     FFmpegEmbedSubtitlePP,
 )
 from .xattrpp import XAttrMetadataPP
+from .execafterdownload import ExecAfterDownloadPP
 
 __all__ = [
     'AtomicParsleyPP',
@@ -19,4 +20,5 @@ __all__ = [
     'FFmpegExtractAudioPP',
     'FFmpegEmbedSubtitlePP',
     'XAttrMetadataPP',
+    'ExecAfterDownloadPP',
 ]