[Zope-Checkins]
CVS: Zope/lib/python/Products/PluginIndexes/PathIndex
- PathIndex.py:1.38
Christian Heimes
cvs-admin at zope.org
Tue Nov 4 20:17:45 EST 2003
Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/PathIndex
In directory cvs.zope.org:/tmp/cvs-serv23429/lib/python/Products/PluginIndexes/PathIndex
Modified Files:
PathIndex.py
Log Message:
fixed last checkin: one dot too much
=== Zope/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py 1.37 => 1.38 ===
--- Zope/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py:1.37 Tue Nov 4 10:47:35 2003
+++ Zope/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py Tue Nov 4 20:17:44 2003
@@ -113,7 +113,7 @@
comps = filter(None, path.split('/'))
if not self._unindex.has_key(docid):
- self._.migrate_length()
+ self._migrate_length()
self._length.change(1)
for i in range(len(comps)):
@@ -148,7 +148,7 @@
'Attempt to unindex document'
' with id %s failed' % docid)
- self._.migrate_length()
+ self._migrate_length()
self._length.change(-1)
del self._unindex[docid]
More information about the Zope-Checkins
mailing list