aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside-tools/project_lib/project_data.py
diff options
context:
space:
mode:
authorJaime Resano <Jaime.Resano-Aisa@qt.io>2025-01-21 11:23:15 +0100
committerJaime Resano <Jaime.Resano-Aisa@qt.io>2025-01-23 11:10:26 +0100
commit658724013cd177123e97bad8fd7c24e639ce2b66 (patch)
treed14a70cc620cfda2985aff6c780feccb0b589d67 /sources/pyside-tools/project_lib/project_data.py
parent23b7ff61fb899ef8ae305df134d2c0968dce1fa2 (diff)
pyside6-project: 4. Enable building Design Studio projects
pyside6-project tool needs to be more flexible to build Design Studio projects. The path where a .qrc compilation output is stored has to be configurable. In addition, a check is performed to see whether the .qrc file needs to be rebuild by looking at the files that are referenced. This avoids unnecesary rebuilds. Task-number: PYSIDE-1612 Pick-to: 6.8 Change-Id: I8aafd5e66e477bbb360f3cf691d43e12c8866ec4 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside-tools/project_lib/project_data.py')
-rw-r--r--sources/pyside-tools/project_lib/project_data.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside-tools/project_lib/project_data.py b/sources/pyside-tools/project_lib/project_data.py
index b9c428a08..445f02b81 100644
--- a/sources/pyside-tools/project_lib/project_data.py
+++ b/sources/pyside-tools/project_lib/project_data.py
@@ -115,7 +115,7 @@ class ProjectData:
# __main__ not found
print(
- "Python file with main function not found. Add the file to" f" {self.project_file}",
+ f"Python file with main function not found. Add the file to {self.project_file}",
file=sys.stderr,
)
sys.exit(1)