From 800232fb766f70478645dc1d59922587da9310c5 Mon Sep 17 00:00:00 2001 From: Joseph Coffland Date: Wed, 27 Dec 2017 14:19:50 -0800 Subject: [PATCH] Fixed SConstruct for python3 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index ad15075..e025524 100644 --- a/SConstruct +++ b/SConstruct @@ -15,7 +15,7 @@ conf = env.CBConfigure() try: version = env.FAHClientVersion() except Exception, e: - print e + print(e) version = '0.0.0' env.Replace(PACKAGE_VERSION = version)