fixed bug self._tables, thanks Mart

This commit is contained in:
mdipierro
2013-01-08 09:17:42 -06:00
parent 424ea22334
commit 2da5b2191f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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