Wrong exception class name.

This commit is contained in:
Paul J. Davis 2010-03-10 18:53:01 -05:00
parent badad6d33d
commit 4496eec8a0

View File

@ -160,7 +160,7 @@ class Worker(object):
self.log.exception("Error processing request.")
else:
self.log.warn("Ignoring EPIPE")
except UnexpectedShutdown:
except UnexpectedEOF:
self.log.exception("remote closed the connection unexpectedly.")
except Exception, e:
self.log.exception("Error processing request.")