mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
Issue #12151: Correction to diagnostic code.
This commit is contained in:
parent
ba980db797
commit
acd902be64
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue