[Zope3-checkins] CVS: Zope3/src/zope/app/container -
traversal.py:1.12
Stephan Richter
srichter at cosmos.phy.tufts.edu
Thu Mar 18 22:17:23 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/container
In directory cvs.zope.org:/tmp/cvs-serv2376/src/zope/app/container
Modified Files:
traversal.py
Log Message:
Fix small bug that prohibited the NotFound error to be created correctly.
=== Zope3/src/zope/app/container/traversal.py 1.11 => 1.12 ===
--- Zope3/src/zope/app/container/traversal.py:1.11 Sat Mar 13 16:03:08 2004
+++ Zope3/src/zope/app/container/traversal.py Thu Mar 18 22:17:23 2004
@@ -74,7 +74,7 @@
if view is not None:
return view
- raise NotFound(context, name, request)
+ raise NotFound(self.context, name, request)
_marker = object()
More information about the Zope3-Checkins
mailing list