# HG changeset patch # User Sylvain Thénault # Date 1288971497 -3600 # Node ID 070e3b23160df5267abd2eb4d2f50a5176d6b6d3 # Parent eeedb3575d2537e01a958db0126f226984edbb49 [migration] fix rqliter when some query arguments are given diff -r eeedb3575d25 -r 070e3b23160d server/migractions.py --- a/server/migractions.py Fri Oct 22 16:14:48 2010 +0200 +++ b/server/migractions.py Fri Nov 05 16:38:17 2010 +0100 @@ -1461,7 +1461,7 @@ return res def rqliter(self, rql, kwargs=None, ask_confirm=True): - return ForRqlIterator(self, rql, None, ask_confirm) + return ForRqlIterator(self, rql, kwargs, ask_confirm) # broken db commands ######################################################