py34: fix body's response conversion

Change-Id: I15b7c82acbd9e0537567062b00bddb22690b3ff7
This commit is contained in:
Andrey Pavlov 2015-09-09 17:20:03 +03:00
parent f51ca94079
commit dff2029db6

View File

@ -405,6 +405,6 @@ class Executor(wsgi.Application):
resp = webob.Response()
resp.status = 200
resp.headers['Content-Type'] = 'text/xml'
resp.body = str(result)
resp.body = six.binary_type(result)
return resp