fix run.py ssl error
This commit is contained in:
parent
4a2882ed54
commit
b2b45e9ff6
1 changed files with 2 additions and 2 deletions
|
@ -79,6 +79,6 @@ def glot(name, content, url):
|
|||
"content": content,
|
||||
}]
|
||||
}
|
||||
resp = requests.post(url=url, headers=headers, json=data).json()
|
||||
resp = requests.post(url=url, headers=headers, json=data, verify=False).json()
|
||||
r = f"stdout:\n{resp['stdout']}\nstderr:\n{resp['stderr']}\nerror:\n{resp['error']}"
|
||||
return r
|
||||
return r
|
||||
|
|
Loading…
Reference in a new issue