commit | 89282afafbdc29903ff1c29ea26d5510572d494a | [log] [tgz] |
---|---|---|
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Thu May 03 12:06:52 2012 +0100 |
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Thu May 03 12:06:52 2012 +0100 |
tree | 0378aa87d7db29318bb7242e1344c43aec9e3b2c | |
parent | 39687ee9db2303cabdf1b349ffaa60df1c01ba9d [diff] |
Changed order of cleanup operations to be more sensible.
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 42c873a..16b3fb6 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py
@@ -2360,8 +2360,8 @@ r = logging.makeLogRecord({'msg': 'testing' }) h.handle(r) finally: - h.close() remover.join() + h.close() if os.path.exists(fn): os.unlink(fn)