[Zope-Checkins] CVS: Zope/lib/python/Zope/App - startup.py:1.11

Shane Hathaway shane at zope.com
Tue Sep 16 11:38:26 EDT 2003


Update of /cvs-repository/Zope/lib/python/Zope/App
In directory cvs.zope.org:/tmp/cvs-serv11501

Modified Files:
	startup.py 
Log Message:
Fixed one more spot that was raising the wrong exception.


=== Zope/lib/python/Zope/App/startup.py 1.10 => 1.11 ===
--- Zope/lib/python/Zope/App/startup.py:1.10	Tue Sep 16 11:35:07 2003
+++ Zope/lib/python/Zope/App/startup.py	Tue Sep 16 11:38:25 2003
@@ -169,7 +169,8 @@
             error_log_url = log.raising((t, v, traceback))
 
         if (getattr(REQUEST.get('RESPONSE', None), '_error_format', '')
-            !='text/html'): raise
+            !='text/html'):
+            raise t, v, traceback
 
         if (published is None or published is app or
             type(published) is ListType):




More information about the Zope-Checkins mailing list