diff --git a/VERSION b/VERSION index fd642f59..cedcff9d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-07-04 22:47:22) dev +Version 2.00.0 (2012-07-04 22:48:31) dev diff --git a/gluon/dal.py b/gluon/dal.py index ca4bdeae..831c7a7d 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -8150,7 +8150,7 @@ class Field(Expression): return True def __str__(self): - quote = self.db._adapter.varquote + quote = self.db._adapter and self.db._adapter.varquote or lambda x:x try: return '%s.%s' % (quote(self.tablename), quote(self.name)) except: