aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside-tools/pyside_tool.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-02 16:11:52 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-02 16:12:04 +0000
commit25180730194bec25f915f32ab846ea583fb1493f (patch)
tree9a73e0336ecf21e085d99d6a651c5547b9eb99f8 /sources/pyside-tools/pyside_tool.py
parent6e3e7b9ca0548430aaa5e2555d6e02c64625fa3f (diff)
Rename PySide2 to PySide6
Adapt CMake files, build scripts, tests and examples. Task-number: PYSIDE-904 Change-Id: I845f7b006e9ad274fed5444ec4c1f9dbe176ff88 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/pyside-tools/pyside_tool.py')
-rw-r--r--[-rwxr-xr-x]sources/pyside-tools/pyside_tool.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/pyside-tools/pyside_tool.py b/sources/pyside-tools/pyside_tool.py
index 99a3700f4..15db6c4aa 100755..100644
--- a/sources/pyside-tools/pyside_tool.py
+++ b/sources/pyside-tools/pyside_tool.py
@@ -43,11 +43,11 @@ import os
import subprocess
from subprocess import Popen, PIPE
-import PySide2 as ref_mod
+import PySide6 as ref_mod
def main():
- # This will take care of "pyside2-lupdate" listed as an entrypoint
+ # This will take care of "pyside6-lupdate" listed as an entrypoint
# in setup.py are copied to 'scripts/..'
cmd = os.path.join("..", os.path.basename(sys.argv[0]))
command = [os.path.join(os.path.dirname(os.path.realpath(__file__)), cmd)]
@@ -56,7 +56,7 @@ def main():
def qt_tool_wrapper(qt_tool, args):
- # Taking care of pyside2-uic, pyside2-rcc, and pyside2-designer
+ # Taking care of pyside6-uic, pyside6-rcc, and pyside6-designer
# listed as an entrypoint in setup.py
pyside_dir = os.path.dirname(ref_mod.__file__)
exe = os.path.join(pyside_dir, qt_tool)