From 4a6afd469fad170868554bf28578849bf3dfd5dd Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 9 May 2008 16:34:10 +0000 Subject: r4695 merged to trunk; trunk now becomes 0.5. 0.4 development continues at /sqlalchemy/branches/rel_0_4 --- lib/sqlalchemy/sql/operators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/sql/operators.py') diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py index dfd638ecb..46dcaba66 100644 --- a/lib/sqlalchemy/sql/operators.py +++ b/lib/sqlalchemy/sql/operators.py @@ -44,7 +44,7 @@ def between_op(a, b, c): return a.between(b, c) def in_op(a, b): - return a.in_(*b) + return a.in_(b) def notin_op(a, b): raise NotImplementedError() -- cgit v1.2.1