]> granicus.if.org Git - python/commitdiff
Handler close() functions call flush() [SF #901330]
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Sat, 21 Feb 2004 22:12:32 +0000 (22:12 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Sat, 21 Feb 2004 22:12:32 +0000 (22:12 +0000)
Lib/logging/__init__.py

index aa641900c6435e5b536487368ba8738881517467..5636c70b6241dbf5128e150dec61cfa573b00118 100644 (file)
@@ -1,4 +1,4 @@
-# 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
 # documentation for any purpose and without fee is hereby granted,
@@ -36,8 +36,8 @@ except ImportError:
 
 __author__  = "Vinay Sajip <vinay_sajip@red-dove.com>"
 __status__  = "beta"
-__version__ = "0.4.9"
-__date__    = "20 February 2004"
+__version__ = "0.4.9.1"
+__date__    = "21 February 2004"
 
 #---------------------------------------------------------------------------
 #   Miscellaneous module data
@@ -712,6 +712,7 @@ class FileHandler(StreamHandler):
         """
         Closes the stream.
         """
+        self.flush()
         self.stream.close()
         StreamHandler.close(self)