[Erp5-report] r30034 - /erp5/trunk/products/ZSQLCatalog/interfaces/query_catalog.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Oct 27 15:17:53 CET 2009


Author: vincent
Date: Tue Oct 27 15:17:50 2009
New Revision: 30034

URL: http://svn.erp5.org?rev=30034&view=rev
Log:
Fix buildEntireQuery definition: REQUEST parameter was removed.
Also fix a typo (missing colon at end of method definition).

Modified:
    erp5/trunk/products/ZSQLCatalog/interfaces/query_catalog.py

Modified: erp5/trunk/products/ZSQLCatalog/interfaces/query_catalog.py
URL: http://svn.erp5.org/erp5/trunk/products/ZSQLCatalog/interfaces/query_catalog.py?rev=30034&r1=30033&r2=30034&view=diff
==============================================================================
--- erp5/trunk/products/ZSQLCatalog/interfaces/query_catalog.py [utf8] (original)
+++ erp5/trunk/products/ZSQLCatalog/interfaces/query_catalog.py [utf8] Tue Oct 27 15:17:50 2009
@@ -63,9 +63,8 @@
         It must be a valid ComplexQuery logical operator ('and', 'or').
     """
 
-  def buildEntireQuery(kw, query_table='catalog', REQUEST=None,
-                       ignore_empty_string=1, limit=None,
-                       extra_column_list=None)
+  def buildEntireQuery(kw, query_table='catalog', ignore_empty_string=1,
+                       limit=None, extra_column_list=None):
     """
       Construct and return an instance of EntireQuery class from given
       parameters by calling buildQuery.




More information about the Erp5-report mailing list