1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Fix aiohttp utils to pass encondig to response.json

This commit is contained in:
Luiz Menezes
2018-05-06 21:03:17 -03:00
parent 8621427f46
commit 709017ea46

View File

@@ -4,7 +4,7 @@ import aiohttp
@asyncio.coroutine
def aiohttp_request(loop, method, url, output='text', **kwargs):
def aiohttp_request(loop, method, url, output='text', encoding='utf-8', **kwargs):
session = aiohttp.ClientSession(loop=loop)
response_ctx = session.request(method, url, **kwargs) # NOQA: E999
@@ -12,7 +12,7 @@ def aiohttp_request(loop, method, url, output='text', **kwargs):
if output == 'text':
content = yield from response.text() # NOQA: E999
elif output == 'json':
content = yield from response.json() # NOQA: E999
content = yield from response.json(encoding=encoding) # NOQA: E999
elif output == 'raw':
content = yield from response.read() # NOQA: E999