forked from qt-creator/qt-creator
Squish: Add parentheses around all print statements
Required by Python 3. Change-Id: Ia28491882a844d3642da38145b1ebfcfbd5883b3 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -144,9 +144,10 @@ def checkForStillRunningQmlExecutable(possibleNames):
|
||||
continue
|
||||
else:
|
||||
if subprocess.call(["taskkill", "/F", "/FI", "IMAGENAME eq %s" % qmlHelper]) == 0:
|
||||
print "Killed still running %s" % qmlHelper
|
||||
print("Killed still running %s" % qmlHelper)
|
||||
else:
|
||||
print "%s is still running - failed to kill it" % qmlHelper
|
||||
print("%s is still running - failed to kill it" % qmlHelper)
|
||||
|
||||
|
||||
def __removeTestingDir__():
|
||||
def __removeIt__(directory):
|
||||
|
||||
Reference in New Issue
Block a user