diff options
author | Dan Crosta <dcrosta@10gen.com> | 2012-01-31 11:32:59 -0500 |
---|---|---|
committer | Dan Crosta <dcrosta@10gen.com> | 2012-01-31 11:32:59 -0500 |
commit | 5e29dc25bb05469524e53daf9a9fa1d9e6847056 (patch) | |
tree | 2bfb4398272158e4de3f0f15fa938d5bc70e6e86 /SConstruct | |
parent | 4770f74e6ee5dd6ebc42f0733fa6e25f08192d98 (diff) | |
download | mongo-5e29dc25bb05469524e53daf9a9fa1d9e6847056.tar.gz |
make python version detection quiet
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index 3d2fecb693a..4349159786f 100644 --- a/SConstruct +++ b/SConstruct @@ -831,8 +831,7 @@ def smoke_python_name(): match = version.search(output) if match and float(match.group(1)) >= 2.5: return binary - except Exception, e: - print >> sys.stderr, "error detecting suitable python:", e + except: pass # if that all fails, fall back to "python" |