From bfe978db7ce371ab4749337c79bcfb94e7b1bc3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20Gosselin?= Date: Tue, 8 Mar 2022 14:48:56 -0500 Subject: [PATCH] Use a https link instead of a http link to download the KGS_BRF tool --- gwhat/brf_mod/kgs_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gwhat/brf_mod/kgs_gui.py b/gwhat/brf_mod/kgs_gui.py index 277d5c3f..08b910af 100644 --- a/gwhat/brf_mod/kgs_gui.py +++ b/gwhat/brf_mod/kgs_gui.py @@ -106,7 +106,7 @@ def install_kgsbrf(self): print("Installing KGS_BRF software...", end=" ") QApplication.setOverrideCursor(Qt.WaitCursor) - url = "http://www.kgs.ku.edu/HighPlains/OHP/index_program/KGS_BRF.zip" + url = "https://www.kgs.ku.edu/HighPlains/OHP/index_program/KGS_BRF.zip" request = requests.get(url) zfile = zipfile.ZipFile(io.BytesIO(request .content))