Commit 4d84ff6d authored by Jim Fulton's avatar Jim Fulton

Fixed stupid bug in and_not.

parent 0b0acc05
......@@ -118,7 +118,7 @@ class ResultList:
xdict = x._dict
xhas = xdict.has_key
for id, score in dict.items():
if not xhas(id): result[id] = xdict[id]+score
if not xhas(id): result[id] = score
return self.__class__(result, self._words, self._index)
......
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