Fix improper usage of body attribute on web.Response. Should be text since we arent sending bytes (#23857)

This commit is contained in:
Robbie Trencheny 2019-05-14 02:12:05 -05:00 committed by Pascal Vizeli
parent 128ce589e1
commit 6f9860b25e
3 changed files with 4 additions and 4 deletions

View File

@ -73,7 +73,7 @@ async def handle_webhook(hass, webhook_id, request):
data = WEBHOOK_SCHEMA(dict(await request.post()))
except vol.MultipleInvalid as error:
return web.Response(
body=error.error_message,
text=error.error_message,
status=HTTP_UNPROCESSABLE_ENTITY
)

View File

@ -58,7 +58,7 @@ async def handle_webhook(hass, webhook_id, request):
data = WEBHOOK_SCHEMA(dict(await request.post()))
except vol.MultipleInvalid as error:
return web.Response(
body=error.error_message,
text=error.error_message,
status=HTTP_UNPROCESSABLE_ENTITY
)
@ -76,7 +76,7 @@ async def handle_webhook(hass, webhook_id, request):
location_name
)
return web.Response(
body='Setting location to {}'.format(location_name),
text='Setting location to {}'.format(location_name),
status=HTTP_OK
)

View File

@ -81,7 +81,7 @@ def registration_context(registration: Dict) -> Context:
def empty_okay_response(headers: Dict = None, status: int = 200) -> Response:
"""Return a Response with empty JSON object and a 200."""
return Response(body='{}', status=status, content_type='application/json',
return Response(text='{}', status=status, content_type='application/json',
headers=headers)