Merge pull request #559 from reingart/master

Fix debugger interaction due new DAL
This commit is contained in:
mdipierro
2014-12-22 22:08:11 -06:00
+1 -2
View File
@@ -72,8 +72,7 @@ def interact():
f_globals = {}
for name, value in env['globals'].items():
if name not in gluon.html.__all__ and \
name not in gluon.validators.__all__ and \
name not in gluon.dal.__all__:
name not in gluon.validators.__all__:
f_globals[name] = pydoc.text.repr(value)
else:
f_locals = {}