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/wscript_build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/wscript_build') diff --git a/lib/wscript_build b/lib/wscript_build index 9892fd646b..55ca7537c8 100644 --- a/lib/wscript_build +++ b/lib/wscript_build @@ -10,7 +10,7 @@ external_libs = { list = [] -for module, package in external_libs.iteritems(): +for module, package in external_libs.items(): try: __import__(module) except ImportError: -- cgit