Commit 30c1713c authored by Chris McDonough's avatar Chris McDonough

Changed removeForwardEntry to log documentId instead of nonexistent variable 'i'.

parent 1396b5b6
......@@ -91,7 +91,7 @@ undo information so that objects can be unindexed when the old value
is no longer known.
"""
__version__ = '$Revision: 1.35 $'[11:-2]
__version__ = '$Revision: 1.36 $'[11:-2]
import BTree, IIBTree, IOBTree, OIBTree
......@@ -330,7 +330,7 @@ class UnTextIndex(Persistent, Implicit):
except (KeyError, IndexError, TypeError):
LOG('UnTextIndex', ERROR,
'unindex_object tried to unindex nonexistent'
' document %s' % str(i))
' document %s' % str(documentId))
def index_object(self, documentId, obj, threshold=None):
""" Index an object:
......
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