From 7f3116a63d7d91f4c0d26adf8fcdef0a5a957971 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Thu, 8 Apr 2010 07:45:46 +1000 Subject: build: allow the waf build to work with python 3.0 and 3.1 Python 3.x is a bit fussier about print statements and indentation. Signed-off-by: Andrew Tridgell --- lib/util/wscript_configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/util/wscript_configure') diff --git a/lib/util/wscript_configure b/lib/util/wscript_configure index 8bd196f8d3..ae3a4f2e05 100644 --- a/lib/util/wscript_configure +++ b/lib/util/wscript_configure @@ -68,7 +68,7 @@ for (define, msg, code, headers) in statfs_types: break if not found_statfs: - print "FATAL: Failed to find a statfs method" + print("FATAL: Failed to find a statfs method") raise -- cgit