mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Fixed string url parse
This commit is contained in:
parent
26ebca4589
commit
8d091b4ec0
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class Downloader(Configs):
|
|||
|
||||
def wget(self):
|
||||
""" Wget downloader. """
|
||||
self.output = subprocess.call(f'wget {self.wget_options} --directory-prefix={self.path} {self.url}',
|
||||
self.output = subprocess.call(f'wget {self.wget_options} --directory-prefix={self.path} "{self.url}"',
|
||||
shell=True, stderr=self.stderr, stdout=self.stdout)
|
||||
if self.output != 0:
|
||||
raise SystemExit(self.output)
|
||||
|
|
Loading…
Reference in a new issue