[Zodb-checkins] CVS: ZODB3/zLOG - LogHandlers.py:1.8
Jeremy Hylton
jeremy at zope.com
Thu Oct 2 16:25:20 EDT 2003
Update of /cvs-repository/ZODB3/zLOG
In directory cvs.zope.org:/tmp/cvs-serv7739
Modified Files:
LogHandlers.py
Log Message:
Fix number of arguments passed to handleError().
caught by pychecker
=== ZODB3/zLOG/LogHandlers.py 1.7 => 1.8 ===
--- ZODB3/zLOG/LogHandlers.py:1.7 Thu Oct 2 14:17:16 2003
+++ ZODB3/zLOG/LogHandlers.py Thu Oct 2 16:25:20 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