系统Ubuntu19.10,安装最新版的Beta[url=]7.1.14[/url]
通过文件中的"远程下载"功能,下载https的文件,会出现无法下载的情况
panelTask.py 140行
public.ExecShell("wget -O '{}' '{}' -T 30 -t 5 -d &> {}".format(other,task_shell,log_file))
修改为
public.ExecShell("wget -O '{}' '{}' -T 30 -t 5 -d --no-check-certificate &> {}".format(other,task_shell,log_file))
就可以解决了
|
|