[Zope-Checkins] SVN: Zope/branches/2.9/ - Missing import of
NotFound in webdav.Resource.
Sidnei da Silva
sidnei at enfoldsystems.com
Tue Feb 28 14:56:15 EST 2006
Log message for revision 65607:
- Missing import of NotFound in webdav.Resource.
Changed:
U Zope/branches/2.9/doc/CHANGES.txt
U Zope/branches/2.9/lib/python/webdav/Resource.py
-=-
Modified: Zope/branches/2.9/doc/CHANGES.txt
===================================================================
--- Zope/branches/2.9/doc/CHANGES.txt 2006-02-28 19:55:33 UTC (rev 65606)
+++ Zope/branches/2.9/doc/CHANGES.txt 2006-02-28 19:56:14 UTC (rev 65607)
@@ -14,6 +14,12 @@
to the rules for such a type laid out in the Python docs:
http://docs.python.org/api/supporting-cycle-detection.html
+ After Zope 2.9.1
+
+ Bugs fixed
+
+ - Missing import of NotFound in webdav.Resource.
+
Zope 2.9.1 (2006/02/25)
Bugs fixed
Modified: Zope/branches/2.9/lib/python/webdav/Resource.py
===================================================================
--- Zope/branches/2.9/lib/python/webdav/Resource.py 2006-02-28 19:55:33 UTC (rev 65606)
+++ Zope/branches/2.9/lib/python/webdav/Resource.py 2006-02-28 19:56:14 UTC (rev 65607)
@@ -24,7 +24,7 @@
from AccessControl import getSecurityManager
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