From a4e926b6374094d59251b15c4964ecd8be62417f Mon Sep 17 00:00:00 2001 From: mdipierro Date: Tue, 15 Jan 2013 22:23:00 -0600 Subject: [PATCH] fixed recent bug in dal, thanks Denes --- VERSION | 2 +- gluon/dal.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 616d55a6..952a16a9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.4.1-alpha.2+timestamp.2013.01.15.15.53.29 +Version 2.4.1-alpha.2+timestamp.2013.01.15.22.22.06 diff --git a/gluon/dal.py b/gluon/dal.py index 11f47fe4..b686d6f5 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -8204,7 +8204,7 @@ class Table(object): return fields def _insert(self, **fields): - fields = self._default(fields) + fields = self._defaults(fields) return self._db._adapter._insert(self, self._listify(fields)) def insert(self, **fields):