diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-05-23 20:49:09 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-05-23 20:49:09 (GMT) |
commit | acd902be6466729ffc2f2cece9bf5e945d64619b (patch) | |
tree | 28b8650dfd2028188e5a8a023c9e5c36c8695250 /Lib/test/test_logging.py | |
parent | ba980db797892e771e9d66e9bd0468cdd2c73115 (diff) | |
download | cpython-acd902be6466729ffc2f2cece9bf5e945d64619b.zip cpython-acd902be6466729ffc2f2cece9bf5e945d64619b.tar.gz cpython-acd902be6466729ffc2f2cece9bf5e945d64619b.tar.bz2 |
Issue #12151: Correction to diagnostic code.
Diffstat (limited to 'Lib/test/test_logging.py')
-rw-r--r-- | Lib/test/test_logging.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 6c66ff1..8166b33 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -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, |