I checked this;

I am using trunk;

I am defining

def get_started():
     return dict()

def features():
     return dict()


when I call /app/default/get-started

I get invalid request;

when I call

/app/default/features

It works perfectly;

Maybe a bug?

On 3/31/11 10:31 AM, Ross Peoples wrote:
web2py will automatically convert dashes to underscores for the function names, so:

getting-started

will become:

def getting_started():
    return dict()

Reply via email to