youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 3026164b1693ef57d0712cd6eeed6ae7a79b0916
parent 9dd73ef4a49597e73388e7e97e32eae5d0f0f027
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Sat,  5 Sep 2015 12:11:36 +0200

[postprocessor/common] Use 'self._downloader.params' instead of 'self.params'

'self.params' is not defined

Diffstat:
Myoutube_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 @@ -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):