summaryrefslogtreecommitdiff
path: root/contrib/svn-fe/svnrdump_sim.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/svn-fe/svnrdump_sim.py')
-rwxr-xr-xcontrib/svn-fe/svnrdump_sim.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/svn-fe/svnrdump_sim.py b/contrib/svn-fe/svnrdump_sim.py
index 1cfac4a..17cf6f9 100755
--- a/contrib/svn-fe/svnrdump_sim.py
+++ b/contrib/svn-fe/svnrdump_sim.py
@@ -7,6 +7,10 @@ to the highest revision that should be available.
"""
import sys, os
+if sys.hexversion < 0x02040000:
+ # The limiter is the ValueError() calls. This may be too conservative
+ sys.stderr.write("svnrdump-sim.py: requires Python 2.4 or later.\n")
+ sys.exit(1)
def getrevlimit():
var = 'SVNRMAX'