[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/TopicIndex - FilteredSet.py:1.4.6.1
Andreas Jung
andreas@andreas-jung.com
Thu, 12 Jun 2003 10:37:55 -0400
Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/TopicIndex
In directory cvs.zope.org:/tmp/cvs-serv5327/lib/python/Products/PluginIndexes/TopicIndex
Modified Files:
Tag: Zope-2_6-branch
FilteredSet.py
Log Message:
Collector #939: fixed typo
=== Zope/lib/python/Products/PluginIndexes/TopicIndex/FilteredSet.py 1.4 => 1.4.6.1 ===
--- Zope/lib/python/Products/PluginIndexes/TopicIndex/FilteredSet.py:1.4 Wed Aug 14 18:19:34 2002
+++ Zope/lib/python/Products/PluginIndexes/TopicIndex/FilteredSet.py Thu Jun 12 10:37:55 2003
@@ -37,8 +37,8 @@
def unindex_object(self,documentId):
- try: self.ids.remove(Id)
- except: pass
+ try: self.ids.remove(documentId)
+ except KeyError: pass
def getId(self): return self.id