Re: [web2py] Syntax error - can not find solution
Thanks Bruno. It works perfect
Re: [web2py] Syntax error - can not find solution
The problem is the Python Version, to pass arguments after one list unpacking *works you need to run Python 2.7+ to solve your ptoblem an run it on webfaction Python you need to replace retorno = DIV(*works, _id='submenu2') with this: retorno = DIV(*works, **{"_id":'submenu2'}) On Fri, Apr 1