Commit 4e4a001d authored by Tres Seaver's avatar Tres Seaver

OFS.Traversable still used a string 'NotFound' exception.

parent bf6fdbe8
...@@ -63,6 +63,8 @@ Zope Changes ...@@ -63,6 +63,8 @@ Zope Changes
Bugs fixed Bugs fixed
- OFS.Traversable still used a string 'NotFound' exception.
- ZPublisher would fail to recognize a XML-RPC request if the - ZPublisher would fail to recognize a XML-RPC request if the
content-type header included a 'charset' parameter. content-type header included a 'charset' parameter.
......
...@@ -21,7 +21,7 @@ from AccessControl.ZopeGuards import guarded_getattr ...@@ -21,7 +21,7 @@ from AccessControl.ZopeGuards import guarded_getattr
from ZODB.POSException import ConflictError from ZODB.POSException import ConflictError
from urllib import quote from urllib import quote
NotFound = 'NotFound' from zExceptions import NotFound
_marker = object() _marker = object()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment