From bb283129f3040d5c0f9e708a24fcff42af5f983c Mon Sep 17 00:00:00 2001 From: William Deegan Date: Fri, 11 Sep 2009 17:20:00 +0000 Subject: Fix test logic to handle warning messages on deprecated python version (changed from 2.2 to 2.4) --- QMTest/TestSCons.py | 4 ++-- 1 file 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. """ -- cgit v0.12