Commit d1dc226b authored by Chris McDonough's avatar Chris McDonough

Fixed bad severity.

parent 2a82ac80
...@@ -92,7 +92,7 @@ is no longer known. ...@@ -92,7 +92,7 @@ is no longer known.
""" """
__version__='$Revision: 1.27 $'[11:-2] __version__='$Revision: 1.28 $'[11:-2]
from Globals import Persistent from Globals import Persistent
import BTree, IIBTree, IOBTree, OIBTree import BTree, IIBTree, IOBTree, OIBTree
...@@ -331,7 +331,7 @@ class UnTextIndex(Persistent, Implicit): ...@@ -331,7 +331,7 @@ class UnTextIndex(Persistent, Implicit):
try: try:
del index[n][i] del index[n][i]
except (KeyError, IndexError, TypeError): except (KeyError, IndexError, TypeError):
LOG('UnTextIndex', PROBLEM, LOG('UnTextIndex', ERROR,
'unindex_object tried to unindex nonexistent' 'unindex_object tried to unindex nonexistent'
' document %s' % str(i)) ' document %s' % str(i))
del unindex[i] del unindex[i]
......
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