diff --git a/VERSION b/VERSION index 7d9d629c..47053d68 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.6.0-development+timestamp.2013.07.09.16.14.32 +Version 2.6.0-development+timestamp.2013.07.11.09.13.54 diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index ade7fad4..a2a413ae 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -37,16 +37,15 @@ import datetime import urllib import re import cStringIO -from gluon import current, redirect +from globals import current +from http import redirect import inspect try: import settings is_gae = settings.global_settings.web2py_runtime_gae except ImportError: - is_gae = False - - + is_gae = False # this is an assumption (if settings missing) table_field = re.compile('[\w_]+\.[\w_]+') widget_class = re.compile('^\w*')