From 050fe0bc6bf72fe7ec47378f15bb44fba9c7a129 Mon Sep 17 00:00:00 2001 From: A888R Date: Sat, 18 Jun 2016 13:41:55 +0400 Subject: [PATCH] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index ee989f5..e5e37e7 100644 --- a/README.rst +++ b/README.rst @@ -152,7 +152,7 @@ aiohttp usage conn = SocksConnector(proxy=addr, proxy_auth=auth, remote_resolve=False) try: - with aiohttp.ClientSession(connector=conn) as ses: + with aiohttp.ClientSession(connector=conn) as session: async with session.get('http://github.com/') as resp: if resp.status == 200: print(await resp.text())