Skip to content

Commit de10373

Browse files
committed
Process the response in the AsyncIO backend
Fixes #121.
1 parent 57dd636 commit de10373

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pusher/aiohttp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def send_request(self, request):
3535
timeout=self.client.timeout
3636
)
3737
body = yield from response.text('utf-8')
38-
return body
38+
return process_response(response.status, body)
3939
finally:
4040
if response is not None:
4141
response.close()

0 commit comments

Comments
 (0)