typo. fix issue #252.

This commit is contained in:
benoitc 2011-09-12 17:15:45 +02:00
parent f2a44431bd
commit ea6abf75b2

View File

@ -126,7 +126,7 @@ class Logger(object):
if isinstance(handler, logging.FileHandler):
handler.acquire()
handler.stream.close()
handler.stream = open(handler.baseFileName,
handler.stream = open(handler.baseFilename,
handler.mode)
handler.release()