On Mon, Oct 15, 2012 at 9:01 PM, Ricardo Pedroso <rmdpedr...@gmail.com> wrote: > On Mon, Oct 15, 2012 at 7:56 PM, Martin Weissenboeck <mweis...@gmail.com> > wrote: >> Upgraded to 2.1.1. >> I get: >> >> Traceback (most recent call last): > > (...) > >> File "D:\web2py\gluon\dal.py", line 7146, in __getattr__ >> >> >> if ogetattr(self,'_lazy_tables') and \ >> >> >> AttributeError: 'DAL' object has no attribute '_lazy_tables' > > I was hit by this, too. > > I track it down to a dal row that I was putting in session. > I was using: > session.myvar = dal_row > > I solve it like: > session.myvar = Storage(dal_row.as_dict()) >
Massimo is it necessary to open a ticket about this or is this intended behavior? Ricardo --