[Checkins] SVN: z3ext.lucene/trunk/ Fixed error in unindexObject

Nikolay Kim fafhrd at datacom.kz
Thu Oct 9 01:29:44 EDT 2008


Log message for revision 91913:
  Fixed error in unindexObject

Changed:
  U   z3ext.lucene/trunk/CHANGES.txt
  U   z3ext.lucene/trunk/src/z3ext/lucene/utils.py

-=-
Modified: z3ext.lucene/trunk/CHANGES.txt
===================================================================
--- z3ext.lucene/trunk/CHANGES.txt	2008-10-08 23:47:28 UTC (rev 91912)
+++ z3ext.lucene/trunk/CHANGES.txt	2008-10-09 05:29:42 UTC (rev 91913)
@@ -2,6 +2,12 @@
 CHANGES
 =======
 
+1.1.4 (2008-10-09)
+------------------
+
+- Fixed error in unindexObject
+
+
 1.1.3 (2008-09-18)
 ------------------
 

Modified: z3ext.lucene/trunk/src/z3ext/lucene/utils.py
===================================================================
--- z3ext.lucene/trunk/src/z3ext/lucene/utils.py	2008-10-08 23:47:28 UTC (rev 91912)
+++ z3ext.lucene/trunk/src/z3ext/lucene/utils.py	2008-10-09 05:29:42 UTC (rev 91913)
@@ -45,7 +45,7 @@
             intids = queryUtility(IIntIds)
 
         if intids is not None:
-            id = intids.getId(object)
-            
+            id = intids.queryId(object)
+
             if id is not None:
                 index.unindex_doc(id)



More information about the Checkins mailing list