diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-03-28 05:10:08 -0400 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2016-03-28 05:10:08 -0400 |
commit | edcd9af47fbfe4172f9aa0e05a45688d778f2600 (patch) | |
tree | ddab78bd6a089fe18f9d0fe02f7d7e0daa7d0092 /win32/installer | |
parent | dd080fa6f37009a1739192ef154038ff82f77cb4 (diff) |
installer: Use https for Python downloads
Diffstat (limited to 'win32/installer')
-rw-r--r-- | win32/installer/hexchat.iss.tt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win32/installer/hexchat.iss.tt b/win32/installer/hexchat.iss.tt index 0b3c971d..36daa505 100644 --- a/win32/installer/hexchat.iss.tt +++ b/win32/installer/hexchat.iss.tt @@ -271,13 +271,13 @@ begin #if APPARCH == "x64" REDIST := 'https://dl.hexchat.net/misc/vcredist_2015_x64.exe'; PERL := 'https://dl.hexchat.net/misc/perl/Perl%205.20.0%20x64.msi'; - PY2 := 'http://python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'; - PY3 := 'http://python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'; + PY2 := 'https://python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'; + PY3 := 'https://python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'; #else REDIST := 'https://dl.hexchat.net/misc/vcredist_2015_x86.exe'; PERL := 'https://dl.hexchat.net/misc/perl/Perl%205.20.0%20x86.msi'; - PY2 := 'http://python.org/ftp/python/2.7.10/python-2.7.10.msi'; - PY3 := 'http://python.org/ftp/python/3.5.1/python-3.5.1.exe'; + PY2 := 'https://python.org/ftp/python/2.7.10/python-2.7.10.msi'; + PY3 := 'https://python.org/ftp/python/3.5.1/python-3.5.1.exe'; #endif DOTNET := 'https://dl.hexchat.net/misc/dotnet_40.exe'; SPELL := 'https://dl.hexchat.net/hexchat/HexChat%20Spelling%20Dictionaries%20r2.exe'; |