aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dlc/downloader/external.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dlc/downloader/external.py')
-rw-r--r--youtube_dlc/downloader/external.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dlc/downloader/external.py b/youtube_dlc/downloader/external.py
index ff82d6779..4bef3bf52 100644
--- a/youtube_dlc/downloader/external.py
+++ b/youtube_dlc/downloader/external.py
@@ -105,9 +105,10 @@ class ExternalFD(FileDownloader):
def _valueless_option(self, command_option, param, expected_value=True):
return cli_valueless_option(self.params, command_option, param, expected_value)
- def _configuration_args(self, default=[]):
+ def _configuration_args(self, *args, **kwargs):
return cli_configuration_args(
- self.params, 'external_downloader_args', self.get_basename(), default)[0]
+ self.params.get('external_downloader_args'),
+ self.get_basename(), *args, **kwargs)
def _call_downloader(self, tmpfilename, info_dict):
""" Either overwrite this or implement _make_cmd """