blob: ab864e6aa26482feea5d4e44233eb29d52517b59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-aa,v 1.4 2005/10/05 16:34:00 drochner Exp $
--- eric/Project/ProjectBrowser.py.orig 2005-07-24 14:20:33.000000000 +0200
+++ eric/Project/ProjectBrowser.py
@@ -2721,7 +2721,7 @@ class ProjectFormsBrowser(PBrowser):
self.compileProc = QProcess()
if self.project.pdata["PROGLANGUAGE"][0] == "Python":
- self.uicompiler = 'pyuic'
+ self.uicompiler = 'pyuic' + sys.version[0:3]
elif self.project.pdata["PROGLANGUAGE"][0] == "Ruby":
self.uicompiler = 'rbuic'
@@ -3328,7 +3328,7 @@ class ProjectTranslationsBrowser(PBrowse
self.pylupdateProc = QProcess()
- pylupdate = 'pylupdate'
+ pylupdate = 'pylupdate' + sys.version[0:3]
if sys.platform == "win32":
pylupdate = pylupdate + '.exe'
self.pylupdateProc.addArgument(pylupdate)
|