Commit 7e407a93 authored by Andreas Jung's avatar Andreas Jung

made vocab. aquisition changes work with unittests

parent 5eb6c053
...@@ -830,8 +830,7 @@ class ZCatalog(Folder, Persistent, Implicit): ...@@ -830,8 +830,7 @@ class ZCatalog(Folder, Persistent, Implicit):
# an "extra" record. # an "extra" record.
if 'extra' in base.__init__.func_code.co_varnames: if 'extra' in base.__init__.func_code.co_varnames:
extra.catalog = self index = apply(base,(name,), {"extra":extra,"caller":self})
index = apply(base,(name,), {"extra":extra})
else: else:
index = base(name,self) index = base(name,self)
......
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