Mercurial > p > roundup > code
diff roundup-server @ 32:b475e7d3ce52
actually quit if python version wrong
| author | Anthony Baxter <anthonybaxter@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Jul 2001 04:05:05 +0000 |
| parents | e5e9ea306a09 |
| children | 33bfce110d1e |
line wrap: on
line diff
--- a/roundup-server Mon Jul 23 03:56:30 2001 +0000 +++ b/roundup-server Mon Jul 23 04:05:05 2001 +0000 @@ -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 @@ # # $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 #
