Re: [web2py] Syntax error - can not find solution

2012-04-13 Thread Jose
Thanks Bruno. It works perfect

Re: [web2py] Syntax error - can not find solution

2012-04-13 Thread Bruno Rocha
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