summaryrefslogtreecommitdiffstats
path: root/QMTest
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2009-09-11 17:20:00 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2009-09-11 17:20:00 (GMT)
commitbb283129f3040d5c0f9e708a24fcff42af5f983c (patch)
treece17688b57c80d93e18ba999bc2196f627b89ce1 /QMTest
parentf062569b7a095050c19fc89f57b597a7ce4f13aa (diff)
downloadSCons-bb283129f3040d5c0f9e708a24fcff42af5f983c.zip
SCons-bb283129f3040d5c0f9e708a24fcff42af5f983c.tar.gz
SCons-bb283129f3040d5c0f9e708a24fcff42af5f983c.tar.bz2
Fix test logic to handle warning messages on deprecated python version (changed from 2.2 to 2.4)
Diffstat (limited to 'QMTest')
-rw-r--r--QMTest/TestSCons.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/QMTest/TestSCons.py b/QMTest/TestSCons.py
index 26faee5..89fe5a6 100644
--- a/QMTest/TestSCons.py
+++ b/QMTest/TestSCons.py
@@ -176,11 +176,11 @@ def unsupported_python_version(version=sys.version_info):
return version < (1, 5, 2)
def deprecated_python_version(version=sys.version_info):
- return version < (2, 2, 0)
+ return version < (2, 4, 0)
if deprecated_python_version():
msg = r"""
-scons: warning: Support for pre-2.2 Python (%s) is deprecated.
+scons: warning: Support for pre-2.4 Python (%s) is deprecated.
If this will cause hardship, contact dev@scons.tigris.org.
"""