summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@googlemail.com>2013-10-24 19:17:45 +0100
committerDominik Picheta <dominikpicheta@googlemail.com>2013-10-24 19:17:45 +0100
commit53752ccaab8bc719360f52f8839ecdcece3b51d2 (patch)
tree40f90ea1c38122be4a95423f2f374da5c3f1c80f /lib
parent09b6b9450915d4605c0349730ea3504d86398c93 (diff)
downloadNim-53752ccaab8bc719360f52f8839ecdcece3b51d2.tar.gz
Fixed breaking changes introduced by the last commit.
Diffstat (limited to 'lib')
-rw-r--r--lib/pure/asyncio.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/asyncio.nim b/lib/pure/asyncio.nim
index a0cf657bf..c4a07d751 100644
--- a/lib/pure/asyncio.nim
+++ b/lib/pure/asyncio.nim
@@ -241,7 +241,7 @@ proc asyncSockHandleWrite(h: PObject) =
         
         if PAsyncSocket(h).handleWrite != nil:
           PAsyncSocket(h).handleWrite(PAsyncSocket(h))
-      except EOS, ESSL:
+      except EOS:
         # Most likely the socket closed before the full buffer could be sent to it.
         sock.close() # TODO: Provide a handleError for users?
     else: