aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2024-01-23 19:26:54 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-01-25 13:54:51 +0000
commit2a5b7aa1362e017ef1dccefab2903a49698b222b (patch)
tree246bcd84101afad0b6b506028d9fdda494ca3d04
parent59a29b219e538b6f76a9791892b92b86d26c6439 (diff)
build: fix typo on module specification
This doesn't have an effect on the module inclusion in the wheels, it's just a typo. Change-Id: Id8651f231b2f0c01bb57ef39698b347ea5a76f05 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit a38aa4d9b6542927c1626fc152f550653bfd0e5f) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--build_scripts/wheel_files.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_scripts/wheel_files.py b/build_scripts/wheel_files.py
index 15aa741ef..ec66b957f 100644
--- a/build_scripts/wheel_files.py
+++ b/build_scripts/wheel_files.py
@@ -157,7 +157,7 @@ def wheel_files_pyside_essentials() -> List[ModuleData]:
module_QtWidgets(),
module_QtHelp(),
module_QtNetwork(),
- module_QtConcurent(),
+ module_QtConcurrent(),
module_QtDBus(),
module_QtDesigner(),
module_QtOpenGL(),
@@ -383,7 +383,7 @@ def module_QtBluetooth() -> ModuleData:
return data
-def module_QtConcurent() -> ModuleData:
+def module_QtConcurrent() -> ModuleData:
data = ModuleData("Concurrent")
return data