[Zope-Checkins] SVN: Zope/trunk/ - Missing import of NotFound in webdav.Resource.

Sidnei da Silva sidnei at enfoldsystems.com
Tue Feb 28 15:02:08 EST 2006


Log message for revision 65608:
  
  - Missing import of NotFound in webdav.Resource.
  

Changed:
  U   Zope/trunk/doc/CHANGES.txt
  U   Zope/trunk/lib/python/webdav/Resource.py

-=-
Modified: Zope/trunk/doc/CHANGES.txt
===================================================================
--- Zope/trunk/doc/CHANGES.txt	2006-02-28 19:56:14 UTC (rev 65607)
+++ Zope/trunk/doc/CHANGES.txt	2006-02-28 20:02:08 UTC (rev 65608)
@@ -197,6 +197,8 @@
 
     Bugs Fixed
 
+      - Missing import of NotFound in webdav.Resource
+
       - Collector #1819: fixed method signature of
         MountedObject.SimpleTrailblazer._construct()
 

Modified: Zope/trunk/lib/python/webdav/Resource.py
===================================================================
--- Zope/trunk/lib/python/webdav/Resource.py	2006-02-28 19:56:14 UTC (rev 65607)
+++ Zope/trunk/lib/python/webdav/Resource.py	2006-02-28 20:02:08 UTC (rev 65608)
@@ -31,7 +31,7 @@
 from AccessControl.Permissions import webdav_access
 from Acquisition import aq_base
 from zExceptions import BadRequest, MethodNotAllowed
-from zExceptions import Unauthorized, Forbidden
+from zExceptions import Unauthorized, Forbidden, NotFound
 from zope.interface import implements
 from ZPublisher.HTTPRangeSupport import HTTPRangeInterface
 



More information about the Zope-Checkins mailing list