Merge "Fix type on py3"

This commit is contained in:
Zuul 2019-12-18 02:15:03 +00:00 committed by Gerrit Code Review
commit 5e9d5d101a

View File

@ -361,7 +361,7 @@ class ProxyLoggingMiddleware(object):
while not chunk:
chunk = next(iterator)
except StopIteration:
chunk = ''
chunk = b''
for h, v in start_response_args[0][1]:
if h.lower() in ('content-length', 'transfer-encoding'):
break