# HG changeset patch # User paulb # Date 1121524774 0 # Node ID 91ead0a6d5ecf5a094db946fb9f7c9562071343c # Parent 4e2ee4bda011c615ede5f69ee9bf146661b3853f [project @ 2005-07-16 14:39:32 by paulb] Fixed CGI newlines at end of headers. diff -r 4e2ee4bda011 -r 91ead0a6d5ec README.txt --- a/README.txt Tue Jul 12 14:12:50 2005 +0000 +++ b/README.txt Sat Jul 16 14:39:34 2005 +0000 @@ -56,6 +56,7 @@ Changes to make the tools/demo.py script work on Windows (and other) platforms (suggested by Jim Madsen). +Fixed end of header newlines for CGI (suggested by Matt Harrison). Minor documentation fixes and improvements, adding information on AOLserver in the CGI and Webware notes. diff -r 4e2ee4bda011 -r 91ead0a6d5ec WebStack/CGI.py --- a/WebStack/CGI.py Tue Jul 12 14:12:50 2005 +0000 +++ b/WebStack/CGI.py Sat Jul 16 14:39:34 2005 +0000 @@ -80,7 +80,6 @@ ) self.output.write(str(self.cookies_out)) self.output.write("\n") - self.output.write("\n") self.content.seek(0) self.output.write(self.content.read())