diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-09-05 12:11:36 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-09-05 12:11:36 +0200 |
commit | 3026164b1693ef57d0712cd6eeed6ae7a79b0916 (patch) | |
tree | 99d8abc31a1c347c860b0eb00c92abde5a39b376 | |
parent | 9dd73ef4a49597e73388e7e97e32eae5d0f0f027 (diff) |
[postprocessor/common] Use 'self._downloader.params' instead of 'self.params'
'self.params' is not defined
-rw-r--r-- | youtube_dl/postprocessor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/postprocessor/common.py b/youtube_dl/postprocessor/common.py index 150ef9173..599dd1df2 100644 --- a/youtube_dl/postprocessor/common.py +++ b/youtube_dl/postprocessor/common.py @@ -62,7 +62,7 @@ class PostProcessor(object): self._downloader.report_warning(errnote) def _configuration_args(self, default=[]): - return cli_configuration_args(self.params, 'postprocessor_args', default) + return cli_configuration_args(self._downloader.params, 'postprocessor_args', default) class AudioConversionError(PostProcessingError): |