aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2022-10-25 12:41:23 +0200
committerSimo Fält <simo.falt@qt.io>2022-10-25 18:18:10 +0000
commit589b5ca8c5b1d0df6cfb0a5d084a1b729d164eb7 (patch)
tree7097283c93a9a4b3e62f9be8608e8c5a818e1321
parentf5ca7f64be740cf16d531cc9308c4d3e2806283b (diff)
Deploy Tool Fix: Correct import
- utils.py was renamed to commands.py - __init__.py import run_command anyway, so replacing with relative import Change-Id: Ic24228a8e754e39bec5a16436e8dea24669c8dee Reviewed-by: Christian Tismer <tismer@stackless.com> Reviewed-by: Adrian Herrmann <adrian.herrmann@qt.io> (cherry picked from commit 20da1ca4bc31bae9433df7d461f31238bf17bed1) Reviewed-by: Simo Fält <simo.falt@qt.io>
-rw-r--r--sources/pyside-tools/deploy/nuitka_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside-tools/deploy/nuitka_helper.py b/sources/pyside-tools/deploy/nuitka_helper.py
index a6b3f79d6..031495de7 100644
--- a/sources/pyside-tools/deploy/nuitka_helper.py
+++ b/sources/pyside-tools/deploy/nuitka_helper.py
@@ -3,7 +3,7 @@
import sys
from pathlib import Path
-from .utils import run_command
+from . import run_command
class Nuitka: