remove old debug print statement

This commit is contained in:
Kay Faraday 2021-12-10 03:20:25 +00:00
parent ecab0de03c
commit 97065e65b6
1 changed files with 0 additions and 1 deletions

View File

@ -106,7 +106,6 @@ async def proxy_replace(hconfig, upstream_resp, resp):
# iter_lines when
while (line := await upstream_resp.content.readline()):
await resp.write(hconfig['pattern'].sub(hconfig['repl'], line))
dprint()(repr(await upstream_resp.content.read()))
return await finalize_resp(resp)