1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-12 07:48:04 +00:00

Update python installer URL for Windows

This commit is contained in:
xavier2k6 2021-09-12 17:17:06 +01:00 committed by GitHub
parent ce0b6f0d56
commit 4b78af268f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2159,9 +2159,9 @@ void MainWindow::installPython()
setCursor(QCursor(Qt::WaitCursor));
// Download python
#ifdef QBT_APP_64BIT
const QString installerURL = "https://www.python.org/ftp/python/3.8.5/python-3.8.5-amd64.exe";
const QString installerURL = "https://www.python.org/ftp/python/3.8.10/python-3.8.10-amd64.exe";
#else
const QString installerURL = "https://www.python.org/ftp/python/3.8.5/python-3.8.5.exe";
const QString installerURL = "https://www.python.org/ftp/python/3.8.10/python-3.8.10.exe";
#endif
Net::DownloadManager::instance()->download(
Net::DownloadRequest(installerURL).saveToFile(true)