I upgraded py4web today from a version that was several months old. Now I'm getting this error:
-------------------------------------
ombott.router.errors.RouteMethodError: Handler is already registred for `['GET', 'DELETE', 'HEAD', 'POST', 'PUT']`
-------------------------------------
I think this is related to @action decorators, but I'm not sure exactly what I need to change.
I have a lines like this for each of my page defs:
-------------------------------------
@action('outdoor_table', method=['POST', 'GET'])
@action('outdoor_table/<path:path>', method=['POST', 'GET'])
--------------------------------------
Can somebody give me a suggestion on this?