From 61c30c7836dcf344fe8ace6690e99f39b7e02e6f Mon Sep 17 00:00:00 2001 From: Jerry James Date: Mon, 16 Sep 2019 12:12:28 -0600 Subject: [PATCH] test: use python 3 compatible print statements. --- test/SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/SConstruct b/test/SConstruct index 27cc776..c124166 100644 --- a/test/SConstruct +++ b/test/SConstruct @@ -16,13 +16,13 @@ env = Environment( conf = Configure(env); if not conf.CheckCXX(): - print "c++ compiler is not installed!" + print("c++ compiler is not installed!") Exit(1) libs = ['stdc++', 'pthread', 'gtest'] for lib in libs: if not conf.CheckLib(lib): - print "library " + lib + " not installed!" + print("library " + lib + " not installed!") Exit(1) conf.Finish()