Skip to content

Commit

Permalink
remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Apr 21, 2017
1 parent b1e8db3 commit 223c61a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/zope/index/field/index.py
Expand Up @@ -62,11 +62,7 @@ def index_doc(self, docid, value):
return
self.unindex_doc(docid)
# Insert into forward index.
try:
set = self._fwd_index.get(value)
except:
import pdb
pdb.set_trace()
set = self._fwd_index.get(value)
if set is None:
set = self.family.IF.TreeSet()
self._fwd_index[value] = set
Expand Down

0 comments on commit 223c61a

Please sign in to comment.