Skip to content

Commit 7987ffa

Browse files
committed
Fix issue2550505
1 parent cd43df8 commit 7987ffa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/backends/rdbms_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2366,7 +2366,7 @@ def filter(self, search_matches, filterspec, sort=[], group=[]):
23662366
if search_matches is not None:
23672367
s = ','.join([a for x in search_matches])
23682368
where.append('_%s.id in (%s)'%(icn, s))
2369-
args = args + v
2369+
args = args + [x for x in search_matches]
23702370

23712371
# construct the SQL
23722372
frum.append('_'+icn)

0 commit comments

Comments
 (0)