summaryrefslogtreecommitdiff
path: root/paste/wsgilib.py
diff options
context:
space:
mode:
Diffstat (limited to 'paste/wsgilib.py')
-rw-r--r--paste/wsgilib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/wsgilib.py b/paste/wsgilib.py
index 4de2bc4..234f7cc 100644
--- a/paste/wsgilib.py
+++ b/paste/wsgilib.py
@@ -415,7 +415,7 @@ def dump_environ(environ, start_response):
output.append("\n")
output = "".join(output)
headers = [('Content-Type', 'text/plain'),
- ('Content-Length', len(output))]
+ ('Content-Length', str(len(output)))]
start_response("200 OK", headers)
return [output]