Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion python/paddle/utils/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import hashlib
import os
import os.path as osp
import shlex
import shutil
import subprocess
import sys
Expand Down Expand Up @@ -204,7 +205,8 @@ def _wget_download(url: str, fullname: str):
'https',
), 'Only support https and http url'
# using wget to download url
tmp_fullname = fullname + "_tmp"
tmp_fullname = shlex.quote(fullname + "_tmp")
url = shlex.quote(url)
# –user-agent
command = f'wget -O {tmp_fullname} -t {DOWNLOAD_RETRY_LIMIT} {url}'
subprc = subprocess.Popen(
Expand Down