Merge "Py3: fix a simple bytes vs str issue"

This commit is contained in:
Zuul 2018-12-02 05:30:54 +00:00 committed by Gerrit Code Review
commit 98efeb84a2

View File

@ -148,7 +148,7 @@ class S3ApiTestCase(unittest.TestCase):
headers[0] = swob.HeaderKeyDict(h)
body_iter = app(req.environ, start_response)
body = ''
body = b''
caught_exc = None
try:
for chunk in body_iter: