Commit 8063bbce authored by Hanno Schlichting's avatar Hanno Schlichting

Reintroduce an aq_inner into the getPhysicalPath code to fix test failures in...

Reintroduce an aq_inner into the getPhysicalPath code to fix test failures in CMF's discussion items
parent 0254aa3c
......@@ -137,10 +137,7 @@ class Traversable:
pid = p.getId()
path = (pid, ) + path
try:
p = p.__parent__
except AttributeError:
p = None
p = aq_parent(aq_inner(p))
else:
if IApplication.providedBy(p):
path = ('', ) + path
......
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