From cb68c82843ea007d3c096906123cbdbc03a72efb Mon Sep 17 00:00:00 2001 From: Adrian Knoth Date: Wed, 15 Feb 2012 21:35:56 +0100 Subject: [PATCH] wscript: [Cosmetics] Drop superfluous braces in print statement --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index e18bd3df..988d84c1 100644 --- a/wscript +++ b/wscript @@ -294,7 +294,7 @@ def configure(conf): print() def build(bld): - print(("make[1]: Entering directory `" + os.getcwd() + "/" + out + "'" )) + print("make[1]: Entering directory `" + os.getcwd() + "/" + out + "'") if not os.access('svnversion.h', os.R_OK): create_svnversion_task(bld)