diff --git a/eventlet/twistedutil/protocol.py b/eventlet/twistedutil/protocol.py index 0453fe2..b778042 100644 --- a/eventlet/twistedutil/protocol.py +++ b/eventlet/twistedutil/protocol.py @@ -395,6 +395,9 @@ class SimpleSpawnFactory(Factory): self.args = args self.kwargs = kwargs + def exc_handler(self, *args): + pass + def buildProtocol(self, addr): gtransport = self.gtransport_class(*self.args, **self.kwargs) protocol = gtransport.build_protocol()