summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGary Oberbrunner <garyo@oberbrunner.com>2011-01-12 03:31:25 (GMT)
committerGary Oberbrunner <garyo@oberbrunner.com>2011-01-12 03:31:25 (GMT)
commitc75872cedf394e9c3804441bda2f4dcbf7722ce8 (patch)
tree0ce9072ad60238a4115f8d2f24ae00b7f75911d3
parenta8260f9137585cca702af3c89ca014f5e5156f86 (diff)
downloadSCons-c75872cedf394e9c3804441bda2f4dcbf7722ce8.zip
SCons-c75872cedf394e9c3804441bda2f4dcbf7722ce8.tar.gz
SCons-c75872cedf394e9c3804441bda2f4dcbf7722ce8.tar.bz2
Improve python 3.x not supported error message.
-rw-r--r--src/script/scons.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script/scons.py b/src/script/scons.py
index 010302f..0e2cd63 100644
--- a/src/script/scons.py
+++ b/src/script/scons.py
@@ -61,7 +61,8 @@ import sys
# If so exit with error message
try:
if sys.version_info >= (3,0,0):
- msg = "scons: *** SCons version %s does not run under Python version %s.\n"
+ msg = "scons: *** SCons version %s does not run under Python version %s.\n\
+Python 3.0 and later are not yet supported.\n"
sys.stderr.write(msg % (__version__, sys.version.split()[0]))
sys.exit(1)
except AttributeError: