Commit 8ee48fd8 authored by Wichert Akkerman's avatar Wichert Akkerman

Restore bbb: rename _insertEntry back to insertEntry. LP #562997

parent eba1a68a
......@@ -118,7 +118,7 @@ class PathIndex(Persistent, SimpleItem):
self._length.change(1)
for i in range(len(comps)):
self._insertEntry(comps[i], docid, i)
self.insertEntry(comps[i], docid, i)
self._unindex[docid] = path
return 1
......@@ -228,7 +228,7 @@ class PathIndex(Persistent, SimpleItem):
# Helper methods
def _insertEntry(self, comp, id, level):
def insertEntry(self, comp, id, level):
""" Insert an entry.
'comp' is an individual path component
......
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