--
I like python!
UliPad <<The Python Editor>>: http://code.google.com/p/ulipad/
meide <<wxPython UI module>>: http://code.google.com/p/meide/
My Blog: http://www.donews.net/limodou
Massimo
are you confirming the fact that a flash message is displayed only
once (as intended) or are you saying that session.flash does not work
for you?
Massimo
def test1():
session.flash='oops'
redirect(URL(r=request,f='test2'))
def test2():
return dict()
when you visit test1, and you get redirected, don't you see oops?
Are you using your own layout.html? If so you have to make sure
somewhere you have
{{if response.flash}}{{=response.flash}}{{pass}}
Could this be the problem?