summaryrefslogtreecommitdiff
path: root/subversion/tests/cmdline/svntest/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/tests/cmdline/svntest/__init__.py')
-rw-r--r--subversion/tests/cmdline/svntest/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/subversion/tests/cmdline/svntest/__init__.py b/subversion/tests/cmdline/svntest/__init__.py
index 98a67b6..e090685 100644
--- a/subversion/tests/cmdline/svntest/__init__.py
+++ b/subversion/tests/cmdline/svntest/__init__.py
@@ -23,11 +23,11 @@
__all__ = [ ]
import sys
-if sys.hexversion < 0x2050000:
- sys.stderr.write('[SKIPPED] at least Python 2.5 is required\n')
+if sys.hexversion < 0x2070000:
+ sys.stderr.write('[SKIPPED] at least Python 2.7 is required\n')
# note: exiting is a bit harsh for a library module, but we really do
- # require Python 2.5. this package isn't going to work otherwise.
+ # require Python 2.7. this package isn't going to work otherwise.
# we're skipping this test, not failing, so exit with 0
sys.exit(0)