From 87186c8723b5c96b2300527f832c729d63e730af Mon Sep 17 00:00:00 2001 From: anthonybaxter Date: Mon, 23 Jul 2001 04:05:05 +0000 Subject: [PATCH] actually quit if python version wrong git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@36 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup-server | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/roundup-server b/roundup-server index ff4e0c1..fb8a041 100755 --- a/roundup-server +++ b/roundup-server @@ -3,13 +3,14 @@ Stolen from CGIHTTPServer -$Id: roundup-server,v 1.1 2001-07-23 03:46:48 richard Exp $ +$Id: roundup-server,v 1.2 2001-07-23 04:05:05 anthonybaxter Exp $ """ import sys if int(sys.version[0]) < 2: print "Content-Type: text/plain\n" print "Roundup requires Python 2.0 or newer." + sys.exit(0) __version__ = "0.1" @@ -219,6 +220,9 @@ if __name__ == '__main__': # # $Log: not supported by cvs2svn $ +# Revision 1.1 2001/07/23 03:46:48 richard +# moving the bin files to facilitate out-of-the-boxness +# # Revision 1.1 2001/07/22 11:15:45 richard # More Grande Splite stuff # -- 2.30.2