[Python-checkins] r70413 - tracker/roundup-src/roundup/backends/rdbms_common.py

martin.v.loewis python-checkins at python.org
Mon Mar 16 02:34:49 CET 2009


Author: martin.v.loewis
Date: Mon Mar 16 02:34:49 2009
New Revision: 70413

Log:
Update arguments for search_matches filter.


Modified:
   tracker/roundup-src/roundup/backends/rdbms_common.py

Modified: tracker/roundup-src/roundup/backends/rdbms_common.py
==============================================================================
--- tracker/roundup-src/roundup/backends/rdbms_common.py	(original)
+++ tracker/roundup-src/roundup/backends/rdbms_common.py	Mon Mar 16 02:34:49 2009
@@ -2366,7 +2366,7 @@
         if search_matches is not None:
             s = ','.join([a for x in search_matches])
             where.append('_%s.id in (%s)'%(icn, s))
-            args = args + v
+            args = args + search_matches.keys()
 
         # construct the SQL
         frum.append('_'+icn)


More information about the Python-checkins mailing list