[web2py] Modules not reloading

2017-07-19 Thread Anthony
Is this Python 2 or 3? Does it work using __import__() instead of importlib? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message bec

[web2py] Modules not reloading

2017-07-18 Thread António Ramos
Hello in my db.py i have this from gluon.custom_import import track_changes; track_changes(True) from wf_validates import Validate db.define_table( "status", ... Field.Virtual('isavailable', lambda row: Validate().Status(row,db)), Format="%(title)s" ) *my wf_validates.py* from html import *