diff --git a/VERSION b/VERSION index 57155acd..d0fb5069 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.6.0-development+timestamp.2013.08.09.15.06.03 +Version 2.6.0-development+timestamp.2013.08.09.15.15.41 diff --git a/gluon/dal.py b/gluon/dal.py index 63f58d17..9ad7bb17 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -1270,7 +1270,7 @@ class BaseAdapter(ConnectionPool): if isinstance(second, (list,tuple,frozenset)): second = set(second) # remove duplicates, make mutable if isinstance(second, set) and None in second: - second = second.remove(None) + second.remove(None) return self.OR(self.EQ(first, None), self.BELONGS(first, second)) items = ','.join(self.expand(item, first.type) for item in second) return '(%s IN (%s))' % (self.expand(first), items)