From 7c1d6bde5ada2a44cd4f6b31bc53299cf44d701d Mon Sep 17 00:00:00 2001 From: stefan Date: Tue, 30 Jun 2009 01:32:06 +0000 Subject: [PATCH] Fix issue2550552. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4238 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/cgi/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py index 6b74e4b..3b3be84 100644 --- a/roundup/cgi/client.py +++ b/roundup/cgi/client.py @@ -1323,7 +1323,7 @@ class Client: # RFC 2616 14.13: Content-Length # # Tell the client how much data we are providing. - self.setHeader("Content-Length", length) + self.setHeader("Content-Length", str(length)) # Send the HTTP header. self.header() # If the client doesn't actually want the body, or if we are -- 2.30.2