Log message for revision 29799:
  OFS.Traversable still used a string 'NotFound' exception.

Changed:
  U   Zope/trunk/doc/CHANGES.txt
  U   Zope/trunk/lib/python/OFS/Traversable.py

-=-
Modified: Zope/trunk/doc/CHANGES.txt
===================================================================
--- Zope/trunk/doc/CHANGES.txt  2005-04-01 18:34:21 UTC (rev 29798)
+++ Zope/trunk/doc/CHANGES.txt  2005-04-01 18:36:06 UTC (rev 29799)
@@ -63,6 +63,8 @@
 
     Bugs fixed
 
+      - OFS.Traversable still used a string 'NotFound' exception.
+
       - ZPublisher would fail to recognize a XML-RPC request if the
         content-type header included a 'charset' parameter.
 

Modified: Zope/trunk/lib/python/OFS/Traversable.py
===================================================================
--- Zope/trunk/lib/python/OFS/Traversable.py    2005-04-01 18:34:21 UTC (rev 
29798)
+++ Zope/trunk/lib/python/OFS/Traversable.py    2005-04-01 18:36:06 UTC (rev 
29799)
@@ -21,7 +21,7 @@
 from ZODB.POSException import ConflictError
 from urllib import quote
 
-NotFound = 'NotFound'
+from zExceptions import NotFound
 
 _marker = object()
 

_______________________________________________
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins

Reply via email to