summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathew Robinson <mathew.robinson@mongodb.com>2019-09-26 17:43:38 +0000
committerevergreen <evergreen@mongodb.com>2019-09-26 17:43:38 +0000
commit9dd6da3bc2e80cb4cf1736f30b1022b4594d4a72 (patch)
tree35ca3e42f26b45920feebe1873587bfd9e8cf1b3
parent1467632ac13b8f55f3ec53299619db44e8b2037a (diff)
downloadmongo-9dd6da3bc2e80cb4cf1736f30b1022b4594d4a72.tar.gz
SERVER-43634 Report different errors for missing scons and fail to import scons
-rwxr-xr-xbuildscripts/scons.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/scons.py b/buildscripts/scons.py
index 86a28c9516d..90a09c54d45 100755
--- a/buildscripts/scons.py
+++ b/buildscripts/scons.py
@@ -26,7 +26,7 @@ sys.path = [SCONS_DIR] + sys.path
try:
import SCons.Script
except ImportError:
- print("Could not find SCons in '%s'" % (SCONS_DIR))
+ print("Could not import SCons from '%s'" % (SCONS_DIR))
sys.exit(1)
SCons.Script.main()