Commit b785701d authored by Andreas Jung's avatar Andreas Jung

- Collector #1819: fixed signature of

        MountedObject.SimpleTrailblazer._construct()
parent 45af9271
......@@ -27,6 +27,9 @@ Zope Changes
Bugs Fixed
- Collector #1819: fixed signature of
MountedObject.SimpleTrailblazer._construct(
- ZPublisher.BaseRequest: The publisher would happily publish attributes
of type 'bool' and 'complex', as well as Python 2.4's 'set' and
'frozenset'.
......
......@@ -46,7 +46,7 @@ class SimpleTrailblazer:
def __init__(self, base):
self.base = base
def _construct(self, context, id, final):
def _construct(self, context, id):
"""Creates and returns the named folder."""
dispatcher = guarded_getattr(context, 'manage_addProduct')['OFSP']
factory = guarded_getattr(dispatcher, 'manage_addFolder')
......
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