diff options
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/tools/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tools/common.py b/testing/tools/common.py index fc16004210..da3cac8a43 100755 --- a/testing/tools/common.py +++ b/testing/tools/common.py @@ -141,7 +141,7 @@ def GetBooleanGnArg(arg_name, build_dir, verbose=False): os.chdir(cwd) arg_match_output = re.search('%s = (.*)' % arg_name, gn_args_output).group(1) if verbose: - print >> sys.stderr, "Found '%s' for value of %s" % (arg_match_output, arg) + print >> sys.stderr, "Found '%s' for value of %s" % (arg_match_output, arg_name) return arg_match_output == 'true' |