Commit ac20f463 authored by Vinay Sajip's avatar Vinay Sajip

Merged hanged order of cleanup operations from 3.2.

parents 1b487b46 89282afa
...@@ -611,8 +611,8 @@ class HandlerTest(BaseTest): ...@@ -611,8 +611,8 @@ class HandlerTest(BaseTest):
r = logging.makeLogRecord({'msg': 'testing' }) r = logging.makeLogRecord({'msg': 'testing' })
h.handle(r) h.handle(r)
finally: finally:
h.close()
remover.join() remover.join()
h.close()
if os.path.exists(fn): if os.path.exists(fn):
os.unlink(fn) os.unlink(fn)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment