From 9b76e517aaafc3584a44290a98bf66830b8cacb6 Mon Sep 17 00:00:00 2001 From: Crend King <975235+CrendKing@users.noreply.github.com> Date: Thu, 17 Sep 2020 15:59:47 -0700 Subject: [PATCH] Use the full flag notation --- youtube_dl/downloader/external.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py index 67c3da4d4..3d5e08234 100644 --- a/youtube_dl/downloader/external.py +++ b/youtube_dl/downloader/external.py @@ -183,7 +183,7 @@ class Aria2cFD(ExternalFD): def _make_cmd(self, tmpfilename, info_dict): cmd = [self.exe] - cmd += self._valueless_option('-c', 'continuedl') + cmd += self._bool_option('--continue', 'continuedl', separator='=') cmd += self._configuration_args([ '--min-split-size', '1M', '--max-connection-per-server', '4']) dn = os.path.dirname(tmpfilename)