From 3026164b1693ef57d0712cd6eeed6ae7a79b0916 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Sat, 5 Sep 2015 12:11:36 +0200 Subject: [PATCH] [postprocessor/common] Use 'self._downloader.params' instead of 'self.params' 'self.params' is not defined --- youtube_dl/postprocessor/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):