Skip to content

Commit e25398b

Browse files
committed
python_manager: separates the QUrl construction
Signed-off-by: Jack Lau <[email protected]>
1 parent 95a38a5 commit e25398b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/builder/src/python_manager.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,8 @@ void PythonManager::InstallBMF() {
567567
SetProgress(0, "Starting BMF download...");
568568

569569
// Download BMF package
570-
QNetworkRequest request(QUrl(BMF_DOWNLOAD_URL));
570+
QUrl bmfUrl(BMF_DOWNLOAD_URL);
571+
QNetworkRequest request(bmfUrl);
571572
bmfDownload = networkManager->get(request);
572573

573574
connect(bmfDownload, &QNetworkReply::downloadProgress,

0 commit comments

Comments
 (0)