summaryrefslogtreecommitdiff
path: root/Lib/http
diff options
context:
space:
mode:
authorValeriyaSinevich <valeriya.sinevich@phystech.edu>2018-06-18 14:17:53 -0700
committerSteve Dower <steve.dower@microsoft.com>2018-06-18 14:17:53 -0700
commitb36b0a3765bcacb4dcdbf12060e9e99711855da8 (patch)
treec06d9cfd86b8a80fd0b50110182244a30f56bb32 /Lib/http
parente57f91a0f0d5700ec466c9dd0fd2d2b5323a5e76 (diff)
downloadcpython-git-b36b0a3765bcacb4dcdbf12060e9e99711855da8.tar.gz
bpo-33663: Convert content length to string before putting to header (GH-7754)
Diffstat (limited to 'Lib/http')
-rw-r--r--Lib/http/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/server.py b/Lib/http/server.py
index ea0e295d28..ca2dd50739 100644
--- a/Lib/http/server.py
+++ b/Lib/http/server.py
@@ -474,7 +474,7 @@ class BaseHTTPRequestHandler(socketserver.StreamRequestHandler):
})
body = content.encode('UTF-8', 'replace')
self.send_header("Content-Type", self.error_content_type)
- self.send_header('Content-Length', int(len(body)))
+ self.send_header('Content-Length', str(len(body)))
self.end_headers()
if self.command != 'HEAD' and body: