commit | e5d3bc4700d01a0beb57df84cdf6033acee49e3d | [log] [tgz] |
---|---|---|
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Thu May 03 12:03:29 2012 +0100 |
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Thu May 03 12:03:29 2012 +0100 |
tree | f23705d3b04261bf04f445b4049283ec31b31148 | |
parent | dee8dadf31a222ff0bd124e630ea88fd9070f9cc [diff] [blame] |
Changed order of cleanup operations to be more sensible.
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index d7c8d4f..a06deff 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py
@@ -1906,8 +1906,8 @@ r = logging.makeLogRecord({'msg': 'testing' }) h.handle(r) finally: - h.close() remover.join() + h.close() if os.path.exists(fn): os.unlink(fn)