aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/postprocessor/common.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-09-05 12:11:36 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-09-05 12:11:36 +0200
commit3026164b1693ef57d0712cd6eeed6ae7a79b0916 (patch)
tree99d8abc31a1c347c860b0eb00c92abde5a39b376 /youtube_dl/postprocessor/common.py
parent9dd73ef4a49597e73388e7e97e32eae5d0f0f027 (diff)
downloadyoutube-dl-3026164b1693ef57d0712cd6eeed6ae7a79b0916.tar.xz
[postprocessor/common] Use 'self._downloader.params' instead of 'self.params'
'self.params' is not defined
Diffstat (limited to 'youtube_dl/postprocessor/common.py')
-rw-r--r--youtube_dl/postprocessor/common.py2
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):