diff options
author | Thomas Nagy <tnagy1024@gmail.com> | 2010-04-08 07:45:46 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-08 07:46:39 +1000 |
commit | 7f3116a63d7d91f4c0d26adf8fcdef0a5a957971 (patch) | |
tree | 46e95f69b7637c38dbbc20455c3dc99408a93df7 /lib/wscript_build | |
parent | 64957ce0686761acd2a2a7ec1787898d2d8238b6 (diff) | |
download | samba-7f3116a63d7d91f4c0d26adf8fcdef0a5a957971.tar.gz |
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 <tridge@samba.org>
Diffstat (limited to 'lib/wscript_build')
-rw-r--r-- | lib/wscript_build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wscript_build b/lib/wscript_build index 9892fd646b4..55ca7537c8f 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: |