summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2016-09-27 21:52:33 +0200
committerSlávek Banko <[email protected]>2016-09-27 21:52:50 +0200
commit5bf80aeba9a1e9b9b91f3108c1a8d51bf378c4f0 (patch)
treeb2cd1e79b5da092445819dd1f670e5dd39804c98 /contrib
parent1f5dba19f42778625953e74ef92229cbc42a059c (diff)
downloadpytde-5bf80aeba9a1e9b9b91f3108c1a8d51bf378c4f0.tar.gz
pytde-5bf80aeba9a1e9b9b91f3108c1a8d51bf378c4f0.zip
Properly import python_tqt module
This relates to bug 2693 Signed-off-by: Slávek Banko <[email protected]> (cherry picked from commit 2749565477cea347d205d410e596d730a05941c9)
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/tdepyuic2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tdepyuic b/contrib/tdepyuic
index 7299e13..d391f8d 100755
--- a/contrib/tdepyuic
+++ b/contrib/tdepyuic
@@ -134,7 +134,7 @@ def doPyuic ():
buff = m.readlines ()
for line in buff:
- if addImport and (string.strip (line) == 'from qt import *'):
+ if addImport and (string.strip (line) == 'from python_tqt.qt import *'):
n.write (line)
addimport (n)
elif addApp and (string.strip (line) == 'a = TQApplication(sys.argv)'):