[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/PathIndex - PathIndex.py:1.35.2.3

Christian Heimes cvs-admin at zope.org
Tue Nov 4 20:13:48 EST 2003


Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/PathIndex
In directory cvs.zope.org:/tmp/cvs-serv22808/lib/python/Products/PluginIndexes/PathIndex

Modified Files:
      Tag: Zope-2_7-branch
	PathIndex.py 
Log Message:
fixed last checkin: one dot too much


=== Zope/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py 1.35.2.2 => 1.35.2.3 ===
--- Zope/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py:1.35.2.2	Tue Nov  4 10:55:23 2003
+++ Zope/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py	Tue Nov  4 20:13:47 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