Commit 3f9f84de authored by Vinay Sajip's avatar Vinay Sajip

Handler close() functions call flush() [SF #901330]

parent 8036c836
# Copyright 2001-2002 by Vinay Sajip. All Rights Reserved. # Copyright 2001-2004 by Vinay Sajip. All Rights Reserved.
# #
# Permission to use, copy, modify, and distribute this software and its # Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose and without fee is hereby granted, # documentation for any purpose and without fee is hereby granted,
...@@ -36,8 +36,8 @@ except ImportError: ...@@ -36,8 +36,8 @@ except ImportError:
__author__ = "Vinay Sajip <vinay_sajip@red-dove.com>" __author__ = "Vinay Sajip <vinay_sajip@red-dove.com>"
__status__ = "beta" __status__ = "beta"
__version__ = "0.4.9" __version__ = "0.4.9.1"
__date__ = "20 February 2004" __date__ = "21 February 2004"
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Miscellaneous module data # Miscellaneous module data
...@@ -712,6 +712,7 @@ class FileHandler(StreamHandler): ...@@ -712,6 +712,7 @@ class FileHandler(StreamHandler):
""" """
Closes the stream. Closes the stream.
""" """
self.flush()
self.stream.close() self.stream.close()
StreamHandler.close(self) StreamHandler.close(self)
......
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