Commit 19b3a99a authored by Yury Selivanov's avatar Yury Selivanov Committed by GitHub

Merge pull request #9 from SethMichaelLarson/patch-1

Variable name is not correct.
parents 6cc2aaf0 7cac571d
...@@ -31,7 +31,7 @@ async def echo_server(loop, address, unix): ...@@ -31,7 +31,7 @@ async def echo_server(loop, address, unix):
async def echo_client(loop, client): async def echo_client(loop, client):
try: try:
sock.setsockopt(IPPROTO_TCP, TCP_NODELAY, 1) client.setsockopt(IPPROTO_TCP, TCP_NODELAY, 1)
except (OSError, NameError): except (OSError, NameError):
pass pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment