# HG changeset patch # User Doug Simon # Date 1433175228 -7200 # Node ID 57912478d94d7763678e2014d1ec348f17bd9943 # Parent 678303c93e69833f91b8e81f7aff9e2eb5f786f8 fixed pylint issue diff -r 678303c93e69 -r 57912478d94d mx/mx_graal.py --- a/mx/mx_graal.py Mon Jun 01 18:04:52 2015 +0200 +++ b/mx/mx_graal.py Mon Jun 01 18:13:48 2015 +0200 @@ -126,7 +126,7 @@ if vm and 'graal' in vm: if exists(envPath): with open(envPath) as fp: - if ('DEFAULT_VM=' + vm) in fp.read(): + if 'DEFAULT_VM=' + vm in fp.read(): mx.log('Please update the DEFAULT_VM value in ' + envPath + ' to replace "graal" with "jvmci"') vm = vm.replace('graal', 'jvmci') if vm is None: