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 1a89163 commit f831d85Copy full SHA for f831d85
roundup/cgi/client.py
@@ -2213,7 +2213,7 @@ def write_html(self, content):
2213
self.additional_headers['Content-Type'] = \
2214
'text/html; charset=%s' % self.charset
2215
if 'Content-Length' not in self.additional_headers:
2216
- self.additional_headers['Content-Length'] = len(content)
+ self.additional_headers['Content-Length'] = str(len(content))
2217
self.header()
2218
2219
if self.env['REQUEST_METHOD'] == 'HEAD':
0 commit comments