wsgi: avoid raising anythin in finally section

This commit is contained in:
Denis Bilenko
2009-06-23 17:05:44 +07:00
parent 7881e026e3
commit 1a6ea8ee17

View File

@@ -402,5 +402,5 @@ def server(sock, site, log=None, environ=None, max_size=None, max_http_version=D
sock.close()
except socket.error, e:
if e[0] != errno.EPIPE:
raise
traceback.print_exc()