From 27289092f8da63ed1c3289e1cf9da06a35c8e9dd Mon Sep 17 00:00:00 2001 From: crc Date: Mon, 28 Dec 2020 13:12:03 +0000 Subject: [PATCH] nga-python: use https when downloading an image FossilOrigin-Name: fd6b6b6a570c40bc025df1cecc465ae80497f100173e67276c21cbdedcb9e1f3 --- vm/nga-python/retro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/nga-python/retro.py b/vm/nga-python/retro.py index 9574fdb..01672eb 100644 --- a/vm/nga-python/retro.py +++ b/vm/nga-python/retro.py @@ -563,7 +563,7 @@ class Retro: import requests import shutil - data = requests.get("http://forth.works/ngaImage", stream=True) + data = requests.get("https://forthworks.com/retro/ngaImage", stream=True) with open("ngaImage", "wb") as f: data.raw.decode_content = True shutil.copyfileobj(data.raw, f)