From cc045a56b2c5296b0cf174f14bc831ea0584e7ab Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Wed, 2 Aug 2017 11:35:20 +0300 Subject: [PATCH] Fix typo --- aiohttp/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp/client.py b/aiohttp/client.py index 1b54fb01c8a..3e09400c1dd 100644 --- a/aiohttp/client.py +++ b/aiohttp/client.py @@ -184,7 +184,7 @@ def _request(self, method, url, *, # Merge with default headers and transform to CIMultiDict headers = self._prepare_headers(headers) - proxy_headers = self.__prepare_headers(proxy_headers) + proxy_headers = self._prepare_headers(proxy_headers) if auth is None: auth = self._default_auth