From 845fd75d7ae53464e1e824a336f70a70ae06d887 Mon Sep 17 00:00:00 2001 From: stefan Date: Mon, 16 Mar 2009 18:04:44 +0000 Subject: [PATCH] Fix issue2550505 git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4205 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/backends/rdbms_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundup/backends/rdbms_common.py b/roundup/backends/rdbms_common.py index 7cb90fd..0aa09f0 100644 --- a/roundup/backends/rdbms_common.py +++ b/roundup/backends/rdbms_common.py @@ -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) -- 2.30.2