aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside-tools/deploy.py
diff options
context:
space:
mode:
authorShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2022-12-09 16:29:38 +0100
committerShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2022-12-22 09:35:49 +0000
commit0b1361f4d70ef00e3a10a390f6b87b756f012838 (patch)
treef2f6dd540befce67262446973cd92d9eb06a470c /sources/pyside-tools/deploy.py
parent1930ac417cc24ed74842e1a6f1c751ce2cfc47d0 (diff)
Rename folder: deploy to deploy_lib
- to distinguish between deploy.py and deploy folder, since both are Python modules. This is especially useful when testing since our tests are located in sources/pyside6/tests/tools. Task-number: PYSIDE-1612 Change-Id: Ideb35b23f454ec64415421e00464cfb1f7055401 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside-tools/deploy.py')
-rw-r--r--sources/pyside-tools/deploy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside-tools/deploy.py b/sources/pyside-tools/deploy.py
index 4576a9e2c..f2dc21f3e 100644
--- a/sources/pyside-tools/deploy.py
+++ b/sources/pyside-tools/deploy.py
@@ -33,7 +33,7 @@ import shutil
import traceback
from textwrap import dedent
-from deploy import Config, PythonExecutable
+from deploy_lib import Config, PythonExecutable
MAJOR_VERSION = 6
EXE_FORMAT = ".exe" if sys.platform == "win32" else ".bin"