We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f423e5 commit 28bd9a6Copy full SHA for 28bd9a6
roundup-server
@@ -3,13 +3,14 @@
3
4
Stolen from CGIHTTPServer
5
6
-$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 $
7
8
"""
9
import sys
10
if int(sys.version[0]) < 2:
11
print "Content-Type: text/plain\n"
12
print "Roundup requires Python 2.0 or newer."
13
+ sys.exit(0)
14
15
__version__ = "0.1"
16
@@ -219,6 +220,9 @@ if __name__ == '__main__':
219
220
221
#
222
# $Log: not supported by cvs2svn $
223
+# Revision 1.1 2001/07/23 03:46:48 richard
224
+# moving the bin files to facilitate out-of-the-boxness
225
+#
226
# Revision 1.1 2001/07/22 11:15:45 richard
227
# More Grande Splite stuff
228
0 commit comments