X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=roundup%2Fversion_check.py;h=20ef7d93b0cfd251a09d98a63d9c0f20feece244;hb=2cde21add45ebe056ae4dc5f70e3caf1d9c68c5f;hp=8dfc68e95d8ca5d64c408beec4063b800da8fe83;hpb=d1b4856ef998199279863ba421301089746da50e;p=roundup.git diff --git a/roundup/version_check.py b/roundup/version_check.py index 8dfc68e..20ef7d9 100644 --- a/roundup/version_check.py +++ b/roundup/version_check.py @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: version_check.py,v 1.2 2001-12-14 21:34:06 richard Exp $ +# $Id: version_check.py,v 1.3 2002-09-10 00:18:20 richard Exp $ import sys if not hasattr(sys, 'version_info') or sys.version_info[:3] < (2,1,1): @@ -24,12 +24,4 @@ if not hasattr(sys, 'version_info') or sys.version_info[:3] < (2,1,1): print "Roundup requires Python 2.1.1 or newer." sys.exit(0) -# -# $Log: not supported by cvs2svn $ -# Revision 1.1 2001/12/13 00:20:01 richard -# . Centralised the python version check code, bumped version to 2.1.1 (really -# needs to be 2.1.2, but that isn't released yet :) -# -# -# # vim: set filetype=python ts=4 sw=4 et si