[Zope3-checkins]
SVN: Zope3/trunk/src/zope/app/traversing/namespace.py
Adapter namespace was eating all exceptions.
Garrett Smith
garrett at mojave-corp.com
Sat Feb 5 08:29:19 EST 2005
Log message for revision 29055:
Adapter namespace was eating all exceptions.
Changed:
U Zope3/trunk/src/zope/app/traversing/namespace.py
-=-
Modified: Zope3/trunk/src/zope/app/traversing/namespace.py
===================================================================
--- Zope3/trunk/src/zope/app/traversing/namespace.py 2005-02-05 13:26:10 UTC (rev 29054)
+++ Zope3/trunk/src/zope/app/traversing/namespace.py 2005-02-05 13:29:19 UTC (rev 29055)
@@ -448,7 +448,7 @@
"""
try:
return component.getAdapter(self.context, IPathAdapter, name)
- except:
+ except ComponentLookupError:
raise TraversalError(self.context, name)
More information about the Zope3-Checkins
mailing list