mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-21 20:46:36 -05:00
[postprocessor/common] Use 'self._downloader.params' instead of 'self.params'
'self.params' is not defined
This commit is contained in:
parent
9dd73ef4a4
commit
3026164b16
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ def try_utime(self, path, atime, mtime, errnote='Cannot update utime of file'):
|
|||
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):
|
||||
|
|
Loading…
Reference in a new issue