Mercurial > p > roundup > code
diff roundup/backends/rdbms_common.py @ 4113:f4641359b892
Fix issue2550505
| author | Stefan Seefeld <stefan@seefeld.name> |
|---|---|
| date | Mon, 16 Mar 2009 18:04:44 +0000 |
| parents | 01eb89b07c13 |
| children | b9abbdd15259 |
line wrap: on
line diff
--- a/roundup/backends/rdbms_common.py Mon Mar 16 04:16:43 2009 +0000 +++ b/roundup/backends/rdbms_common.py Mon Mar 16 18:04:44 2009 +0000 @@ -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 + [x for x in search_matches] # construct the SQL frum.append('_'+icn)
