Issue #12151: Correction to diagnostic code.

This commit is contained in:
Vinay Sajip 2011-05-23 21:49:09 +01:00
parent ba980db797
commit acd902be64
1 changed files with 1 additions and 1 deletions

View File

@ -901,7 +901,7 @@ if threading:
except socket.error:
msg = ('Error during finish, while sending %r, '
'closed = %s')
print(msg % (data, self._closed), file=sys.stderr)
print(msg % (data, self.server._closed), file=sys.stderr)
raise
ThreadingUDPServer.__init__(self, addr, DelegatingUDPRequestHandler,