Code

Fix issue2550505
authorstefan <stefan@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 16 Mar 2009 18:04:44 +0000 (18:04 +0000)
committerstefan <stefan@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 16 Mar 2009 18:04:44 +0000 (18:04 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4205 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/backends/rdbms_common.py

index 7cb90fd3b28242f39110f32951f0111f5fc2f3e1..0aa09f0a659352a9ff1a4b022bc4549c4949eba3 100644 (file)
@@ -2366,7 +2366,7 @@ class Class(hyperdb.Class):
         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 + [x for x in search_matches]
 
         # construct the SQL
         frum.append('_'+icn)