From bf86becc5e4933f261bbd58fad04acc89040a19c Mon Sep 17 00:00:00 2001 From: mdipierro Date: Thu, 8 Nov 2012 10:04:24 -0600 Subject: [PATCH] fies typo in dal, issue 1146, thanks guruyaya --- VERSION | 2 +- gluon/dal.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 223e83b0..7e59d385 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.2.1 (2012-11-08 10:02:43) stable +Version 2.2.1 (2012-11-08 10:04:19) stable diff --git a/gluon/dal.py b/gluon/dal.py index e910aa95..463a74d2 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -8987,7 +8987,7 @@ class LazySet(object): def _count(self,distinct=None): return self._getset()._count(distinct) def _select(self, *fields, **attributes): - return self._getset()._select(*field,**attributes) + return self._getset()._select(*fields,**attributes) def _delete(self): return self._getset()._delete() def _update(self, **update_fields):