[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/OFS/Application.py fixed logger call

Andreas Jung andreas at andreas-jung.com
Sat Nov 18 05:13:28 EST 2006


Log message for revision 71171:
  fixed logger call
  

Changed:
  U   Zope/branches/2.10/lib/python/OFS/Application.py

-=-
Modified: Zope/branches/2.10/lib/python/OFS/Application.py
===================================================================
--- Zope/branches/2.10/lib/python/OFS/Application.py	2006-11-17 20:17:28 UTC (rev 71170)
+++ Zope/branches/2.10/lib/python/OFS/Application.py	2006-11-18 10:13:25 UTC (rev 71171)
@@ -569,8 +569,8 @@
                 transaction.commit()
         except:
             bad_things=1
-            LOG.error('The attempt to rebuild the registry failed.',
-                error=sys.exc_info())
+            LOG.error('The attempt to rebuild the registry failed.',exc_info=True)
+               
             transaction.abort()
 
         # Now we need to see if any (disk-based) products were installed



More information about the Zope-Checkins mailing list