From c75872cedf394e9c3804441bda2f4dcbf7722ce8 Mon Sep 17 00:00:00 2001 From: Gary Oberbrunner Date: Wed, 12 Jan 2011 03:31:25 +0000 Subject: Improve python 3.x not supported error message. --- src/script/scons.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- cgit v0.12