mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-03 06:56:44 +01:00
removed test
This commit is contained in:
parent
ba9d83e236
commit
1607932944
1 changed files with 1 additions and 1 deletions
|
@ -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 '
|
||||
|
|
Loading…
Reference in a new issue