diff options
author | Aurélio A. Heckert <aurelio@colivre.coop.br> | 2015-06-16 18:10:31 -0300 |
---|---|---|
committer | Aurélio A. Heckert <aurelio@colivre.coop.br> | 2015-06-16 18:10:31 -0300 |
commit | 14835de9fb41798c8e6e731a3f07ae871770666f (patch) | |
tree | 5490879a2e241c06180375f581a8bf47f9cff2e1 /youtube_dl/postprocessor/common.py | |
parent | d84f1d14b526c4a5359117a58f25691a3da4c97e (diff) |
Use shlex.split for --pp-params and update related docs.
Diffstat (limited to 'youtube_dl/postprocessor/common.py')
-rw-r--r-- | youtube_dl/postprocessor/common.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/postprocessor/common.py b/youtube_dl/postprocessor/common.py index 3b0e8ddd8..d944d9367 100644 --- a/youtube_dl/postprocessor/common.py +++ b/youtube_dl/postprocessor/common.py @@ -22,7 +22,8 @@ class PostProcessor(object): of the chain is reached. PostProcessor objects follow a "mutual registration" process similar - to InfoExtractor objects. + to InfoExtractor objects. And it can receive parameters from CLI trough + --pp-params. """ _downloader = None |