When I do next in the action:
def check():
if request.args(1) == None:
table = request.args(0)
return dict(table=table)
And my url has a trailing slash after a function argument (i.e.
applictation/controller/function/argument/) I catch an internal error
everytime.
I confused. What do I do wrong?

