From 53a0718a7842514fd7224092039cd8d76c12fc13 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Sun, 15 Dec 2013 13:31:56 -0600 Subject: [PATCH] fixed problem with lack of connector in NoSQL --- VERSION | 2 +- gluon/dal.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index b276869c..092f1d9d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.8.2-stable+timestamp.2013.12.14.20.02.42 +Version 2.8.2-stable+timestamp.2013.12.15.13.31.12 diff --git a/gluon/dal.py b/gluon/dal.py index 80ee34d7..47be7dbc 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -703,6 +703,7 @@ class BaseAdapter(ConnectionPool): can_select_for_update = True dbpath = None folder = None + connector = lambda dbpath, adapter_args: None # __init__ should override this TRUE = 'T' FALSE = 'F'