diff --git a/src/main/script/prerequisiteCheck.groovy b/src/main/script/prerequisiteCheck.groovy index ef81acfa12b..4a5690aeb6d 100644 --- a/src/main/script/prerequisiteCheck.groovy +++ b/src/main/script/prerequisiteCheck.groovy @@ -202,8 +202,8 @@ def checkGit() { // Remark: We're using venv, which was introduced with python 3.3, // that's why this is the baseline for python. def checkPython() { - def python = project.properties['python.exe.bin'] - println "Using python executable: " + python + " OK" + String python = project.properties['python.exe.bin'] + println "Using python executable: " + python.padRight(14) + " OK" print "Detecting Python version: " try { def process = (python + " --version").execute()