Code

fix Date.local()
[roundup.git] / roundup / version_check.py
index 8dfc68e95d8ca5d64c408beec4063b800da8fe83..20ef7d93b0cfd251a09d98a63d9c0f20feece244 100644 (file)
@@ -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