From 2da5b2191fa26a77e982e922c195456089443ce0 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Tue, 8 Jan 2013 09:17:42 -0600 Subject: [PATCH] fixed bug self._tables, thanks Mart --- VERSION | 2 +- gluon/dal.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index d51c6bc1..1044843e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.4.1-alpha.2+timestamp.2013.01.08.09.09.49 +Version 2.4.1-alpha.2+timestamp.2013.01.08.09.16.57 diff --git a/gluon/dal.py b/gluon/dal.py index 6894c96e..5cd4c9f7 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -6899,6 +6899,7 @@ class DAL(object): self._migrated = [] self._LAZY_TABLES = {} self._lazy_tables = lazy_tables + self._tables = SQLCallableList() if not str(attempts).isdigit() or attempts < 0: attempts = 5 if uri: @@ -6951,7 +6952,6 @@ class DAL(object): migrate = fake_migrate = False adapter = self._adapter self._uri_hash = hashlib_md5(adapter.uri).hexdigest() - self._tables = SQLCallableList() self.check_reserved = check_reserved if self.check_reserved: from reserved_sql_keywords import ADAPTERS as RSK