[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher - DefaultPublication.py:1.1.2.6

Martijn Pieters mj@zope.com
Tue, 27 Nov 2001 17:16:25 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/Publisher
In directory cvs.zope.org:/tmp/cvs-serv16249/lib/python/Zope/Publisher

Modified Files:
      Tag: Zope-3x-branch
	DefaultPublication.py 
Log Message:
Fix typos in test suite, and fix a small bug exposed by tests.


=== Zope3/lib/python/Zope/Publisher/DefaultPublication.py 1.1.2.5 => 1.1.2.6 ===
         pass
 
-    def handleException(self, request, exc, retry_allowed=1):
+    def handleException(self, request, exc_info, retry_allowed=1):
         # Let the response handle it as best it can.
         response = request.response
-        response.handleException(exc)
+        response.handleException(exc_info)
         return response