fixed issue with multiple string expressions in select

This commit is contained in:
mdipierro
2013-01-20 14:22:59 -06:00
parent 2b968814c5
commit 9e1ce571e4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.4.1-alpha.2+timestamp.2013.01.20.14.12.54
Version 2.4.1-alpha.2+timestamp.2013.01.20.14.22.13
+1 -1
View File
@@ -1444,7 +1444,7 @@ class BaseAdapter(ConnectionPool):
tablename,fieldname = item.split('.')
append(db[tablename][fieldname])
else:
append(Expression(db,lambda:item))
append(Expression(db,lambda item=item:item))
else:
append(item)
# ## if no fields specified take them all from the requested tables