File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- #!/usr/bin/env python2.7
1+ #!/usr/bin/env python3
22import argparse
33import sys
44import os
@@ -208,8 +208,8 @@ if args.use_embedded_graal:
208208 })
209209 java_bin = libgraal_jdk_home .strip () + '/bin/java'
210210 except CalledProcessError as e :
211- print "Failed to determine location of libgraal"
212- print e .output
211+ print ( "Failed to determine location of libgraal" )
212+ print ( e .output )
213213 sys .exit (1 )
214214else :
215215 if JVMCI_BIN :
@@ -454,7 +454,7 @@ flags += ['-Dorg.slf4j.simpleLogger.defaultLogLevel=off']
454454all_args = JAVA_ARGS + ['-classpath' , classpath , '-Dtruffle.class.path.append=' + classpath ] + flags + SOM_ARGS + args .args
455455
456456if args .verbose :
457- print "CMD: " + java_bin + ' ' + ' ' .join (all_args )
457+ print ( "CMD: " + java_bin + ' ' + ' ' .join (all_args ) )
458458
459459env = dict (os .environ )
460460env ['JVMCI_VERSION_CHECK' ] = 'ignore'
You can’t perform that action at this time.
0 commit comments