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: ...@@ -137,10 +137,7 @@ class Traversable:
pid = p.getId() pid = p.getId()
path = (pid, ) + path path = (pid, ) + path
try: p = aq_parent(aq_inner(p))
p = p.__parent__
except AttributeError:
p = None
else: else:
if IApplication.providedBy(p): if IApplication.providedBy(p):
path = ('', ) + path 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