summaryrefslogtreecommitdiff
path: root/paste/recursive.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-04-21 16:37:43 +0200
committerVictor Stinner <victor.stinner@gmail.com>2015-04-21 16:37:43 +0200
commit5cdae44edea5f766cae9bf3b20dd6fcad5b705ab (patch)
treed6485069f2180410e78400ad16afc5e39084e144 /paste/recursive.py
parentc7e5265cf84a3dd6d17aed875e0849da2aa9d54d (diff)
downloadpaste-5cdae44edea5f766cae9bf3b20dd6fcad5b705ab.tar.gz
Port recursive to Python 3
HTTP body is bytes
Diffstat (limited to 'paste/recursive.py')
-rw-r--r--paste/recursive.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/paste/recursive.py b/paste/recursive.py
index 8f28fc3..0bef920 100644
--- a/paste/recursive.py
+++ b/paste/recursive.py
@@ -115,10 +115,10 @@ class ForwardRequestException(Exception):
def app(environ, start_response):
if environ['PATH_INFO'] == '/hello':
start_response("200 OK", [('Content-type', 'text/plain')])
- return ['Hello World!']
+ return [b'Hello World!']
elif environ['PATH_INFO'] == '/error':
start_response("404 Not Found", [('Content-type', 'text/plain')])
- return ['Page not found']
+ return [b'Page not found']
else:
raise ForwardRequestException('/error')
@@ -158,10 +158,10 @@ class ForwardRequestException(Exception):
def app(environ, start_response):
if environ['PATH_INFO'] == '/hello':
start_response("200 OK", [('Content-type', 'text/plain')])
- return ['Hello World!']
+ return [b'Hello World!']
elif environ['PATH_INFO'] == '/error':
start_response("404 Not Found", [('Content-type', 'text/plain')])
- return ['Page not found']
+ return [b'Page not found']
else:
def factory(app):
return StatusKeeper(app, status='404 Not Found', url='/error')