[Checkins] SVN: zope.exceptions/branches/tseaver-no_2to3/src/zope/exceptions/exceptionformatter.py Wrap long line.

Tres Seaver cvs-admin at zope.org
Fri Apr 6 19:35:54 UTC 2012


Log message for revision 125012:
  Wrap long line.

Changed:
  U   zope.exceptions/branches/tseaver-no_2to3/src/zope/exceptions/exceptionformatter.py

-=-
Modified: zope.exceptions/branches/tseaver-no_2to3/src/zope/exceptions/exceptionformatter.py
===================================================================
--- zope.exceptions/branches/tseaver-no_2to3/src/zope/exceptions/exceptionformatter.py	2012-04-06 19:33:21 UTC (rev 125011)
+++ zope.exceptions/branches/tseaver-no_2to3/src/zope/exceptions/exceptionformatter.py	2012-04-06 19:35:51 UTC (rev 125012)
@@ -176,7 +176,8 @@
         while tb is not None and (limit is None or n < limit):
             if tb.tb_frame.f_locals.get('__exception_formatter__'):
                 # Stop recursion.
-                result.append('(Recursive formatException() stopped, trying traceback.format_tb)\n')
+                result.append('(Recursive formatException() stopped, '
+                              'trying traceback.format_tb)\n')
                 result.extend(traceback.format_tb(tb))
                 break
             line = self.formatLine(tb=tb)



More information about the checkins mailing list