diff options
author | Jaime Resano <Jaime.Resano-Aisa@qt.io> | 2025-01-21 11:17:07 +0100 |
---|---|---|
committer | Jaime Resano <Jaime.Resano-Aisa@qt.io> | 2025-01-22 22:46:43 +0100 |
commit | 23b7ff61fb899ef8ae305df134d2c0968dce1fa2 (patch) | |
tree | 15f5a0afdf5335b883f531d5824d8994306625b4 /sources/pyside-tools/project.pyproject | |
parent | 30f8707e1c677e3a42a93d1b2b17bd563b9de847 (diff) |
pyside6-deploy: 3. Rename project folder to project_lib
This is a refactor in order to improve the code clarity. In the testing
of the pyside6-project command, importlib.import_module is used to
import the project_lib folder. Currently,
importlib.import_module("project") is ambiguous because it may refer
to both the file and the folder. It chooses the folder over the file.
Task-number: PYSIDE-1612
Pick-to: 6.8
Change-Id: I8903ea9d2112cf2eb7a68d0e302d3c74edcf2c22
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside-tools/project.pyproject')
-rw-r--r-- | sources/pyside-tools/project.pyproject | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside-tools/project.pyproject b/sources/pyside-tools/project.pyproject index 346ef0465..49c7adab2 100644 --- a/sources/pyside-tools/project.pyproject +++ b/sources/pyside-tools/project.pyproject @@ -1,4 +1,4 @@ { - "files": ["project.py", "project/__init__.py", "project/newproject.py", - "project/project_data.py", "project/utils.py"] + "files": ["project.py", "project_lib/__init__.py", "project_lib/design_studio_project.py", + "project_lib/newproject.py", "project_lib/project_data.py", "project_lib/utils.py"] } |