[Zodb-checkins] CVS: Zope/lib/python/zLOG - LogHandlers.py:1.6.14.2

Jeremy Hylton jeremy at zope.com
Thu Oct 2 16:25:53 EDT 2003


Update of /cvs-repository/Zope/lib/python/zLOG
In directory cvs.zope.org:/tmp/cvs-serv7774

Modified Files:
      Tag: Zope-2_7-branch
	LogHandlers.py 
Log Message:
Fix number of arguments passed to handleError().

caught by pychecker


=== Zope/lib/python/zLOG/LogHandlers.py 1.6.14.1 => 1.6.14.2 ===
--- Zope/lib/python/zLOG/LogHandlers.py:1.6.14.1	Mon Sep 15 17:26:59 2003
+++ Zope/lib/python/zLOG/LogHandlers.py	Thu Oct  2 16:25:53 2003
@@ -66,7 +66,7 @@
             self.stream.write("%s\n" % msg)
             self.flush()
         except:
-            self.handleError()
+            self.handleError(record)
 
     def flush(self):
         self.stream.flush()




More information about the Zodb-checkins mailing list