[Zope-Checkins]
SVN: Zope/branches/2.9/lib/python/Products/Transience/Transience.py
Collector #146408: fixed broken logger calls
Andreas Jung
andreas at andreas-jung.com
Fri Sep 28 14:20:24 EDT 2007
Log message for revision 80333:
Collector #146408: fixed broken logger calls
Changed:
U Zope/branches/2.9/lib/python/Products/Transience/Transience.py
-=-
Modified: Zope/branches/2.9/lib/python/Products/Transience/Transience.py
===================================================================
--- Zope/branches/2.9/lib/python/Products/Transience/Transience.py 2007-09-28 18:16:59 UTC (rev 80332)
+++ Zope/branches/2.9/lib/python/Products/Transience/Transience.py 2007-09-28 18:20:23 UTC (rev 80333)
@@ -819,7 +819,7 @@
LOG.warning(
'%s failed when calling %s in %s' % (name,callback,
'/'.join(path)),
- exc_info=True()
+ exc_info=True
)
finally:
setSecurityManager(sm)
@@ -828,7 +828,7 @@
path = self.getPhysicalPath()
LOG.warning(
err % (name, '/'.join(path), callback),
- exc_info=True()
+ exc_info=True
)
def getId(self):
More information about the Zope-Checkins
mailing list