Fix for line wrap ugly.

This commit is contained in:
Josiah Carlson 2009-06-03 19:51:52 +00:00
parent a810bc736c
commit 96b79c851a
1 changed files with 1 additions and 2 deletions

View File

@ -106,8 +106,7 @@ def readwrite(obj, flags):
if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL):
obj.handle_close()
except socket.error, e:
if e.args[0] not in (EBADF, ECONNRESET, ENOTCONN, ESHUTDOWN,
ECONNABORTED):
if e.args[0] not in (EBADF, ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED):
obj.handle_error()
else:
obj.handle_close()