[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/ - Missing import of NotFound in webdav.Resource.

Sidnei da Silva sidnei at enfoldsystems.com
Tue Feb 28 14:55:33 EST 2006


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

Changed:
  U   Zope/branches/Zope-2_8-branch/doc/CHANGES.txt
  U   Zope/branches/Zope-2_8-branch/lib/python/webdav/Resource.py

-=-
Modified: Zope/branches/Zope-2_8-branch/doc/CHANGES.txt
===================================================================
--- Zope/branches/Zope-2_8-branch/doc/CHANGES.txt	2006-02-28 19:47:14 UTC (rev 65605)
+++ Zope/branches/Zope-2_8-branch/doc/CHANGES.txt	2006-02-28 19:55:33 UTC (rev 65606)
@@ -22,9 +22,14 @@
 
    - Collector #1233: port ZOPE_CONFIG patch from Zope 2.7 to Zope 2.8
 
+  After Zope 2.8.6
 
-  after Zope 2.8.6 (2006/02/25)
+    Bugs fixed
 
+      - Missing import of NotFound in webdav.Resource.
+
+  Zope 2.8.6 (2006/02/25)
+
     Bugs Fixed
 
       - Collector #1819: fixed signature of

Modified: Zope/branches/Zope-2_8-branch/lib/python/webdav/Resource.py
===================================================================
--- Zope/branches/Zope-2_8-branch/lib/python/webdav/Resource.py	2006-02-28 19:47:14 UTC (rev 65605)
+++ Zope/branches/Zope-2_8-branch/lib/python/webdav/Resource.py	2006-02-28 19:55:33 UTC (rev 65606)
@@ -26,7 +26,7 @@
 from AccessControl import getSecurityManager
 from ZPublisher.HTTPRangeSupport import HTTPRangeInterface
 from zExceptions import Unauthorized, Forbidden
-from zExceptions import BadRequest, MethodNotAllowed 
+from zExceptions import BadRequest, MethodNotAllowed, NotFound
 
 from WriteLockInterface import WriteLockInterface
 import Lockable



More information about the Zope-Checkins mailing list