summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3b70dde)
raw | patch | inline | side by side (parent: 3b70dde)
author | stefan <stefan@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 16 Mar 2009 18:04:44 +0000 (18:04 +0000) | ||
committer | stefan <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 | patch | blob | history |
index 7cb90fd3b28242f39110f32951f0111f5fc2f3e1..0aa09f0a659352a9ff1a4b022bc4549c4949eba3 100644 (file)
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)