removed test

This commit is contained in:
Dimitris Zlatanidis 2023-03-10 21:11:28 +02:00
parent ba9d83e236
commit 1607932944

View file

@ -43,7 +43,7 @@ class Downloader(Configs, Utilities):
def transfer_tools(self) -> None:
""" Downloader tools wget, curl and lftp. """
if self.downloader == 'wget':
self.output = subprocess.call(f'{self.downloader} a{self.wget_options} --directory-prefix={self.path} '
self.output = subprocess.call(f'{self.downloader} {self.wget_options} --directory-prefix={self.path} '
f'"{self.url}"', shell=True, stderr=self.stderr, stdout=self.stdout)
elif self.downloader == 'curl':
self.output = subprocess.call(f'{self.downloader} {self.curl_options} "{self.url}" --output '