[Checkins] SVN: hurry.query/trunk/ Fixed a bug.

Martijn Faassen cvs-admin at zope.org
Fri Jun 22 13:17:38 UTC 2012


Log message for revision 127010:
  Fixed a bug.
  

Changed:
  U   hurry.query/trunk/CHANGES.txt
  U   hurry.query/trunk/src/hurry/query/set.py

-=-
Modified: hurry.query/trunk/CHANGES.txt
===================================================================
--- hurry.query/trunk/CHANGES.txt	2012-06-22 13:17:20 UTC (rev 127009)
+++ hurry.query/trunk/CHANGES.txt	2012-06-22 13:17:34 UTC (rev 127010)
@@ -4,9 +4,9 @@
 1.1.1 (unreleased)
 ------------------
 
-- Nothing changed yet.
+* ExtentNone in set.py missed a parameter ``index_id``. Thanks to Danilo
+  Botelho for the bug report.
 
-
 1.1.0 (2010-07-12)
 ------------------
 

Modified: hurry.query/trunk/src/hurry/query/set.py
===================================================================
--- hurry.query/trunk/src/hurry/query/set.py	2012-06-22 13:17:20 UTC (rev 127009)
+++ hurry.query/trunk/src/hurry/query/set.py	2012-06-22 13:17:34 UTC (rev 127010)
@@ -74,7 +74,7 @@
 class ExtentNone(SetTerm):
     """Any ids in the extent that are not indexed by this index."""
 
-    def __init__(self, extent):
+    def __init__(self, index_id, extent):
         super(None, self).__init__(index_id)
         self.extent = extent
 



More information about the checkins mailing list