From: stefan Date: Mon, 16 Mar 2009 18:04:44 +0000 (+0000) Subject: Fix issue2550505 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=845fd75d7ae53464e1e824a336f70a70ae06d887;p=roundup.git Fix issue2550505 git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4205 57a73879-2fb5-44c3-a270-3262357dd7e2 --- 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)