> > It is just internal logic, creating some objects in several places. The > point is that usually row.email was evaluating to a string, and I was using > that to setup my objects. Now it is evaluating to (when showing with %s): > > (<gluon.dal.Field object at 0x9ea7b8c>, '[email protected]<javascript:> > ') >
Are you saying even without the compute, the "email" field itself isn't working properly? If you do: row = db(db.auth_user).select().first() print row.email you get: <gluon.dal.Field object at 0x9ea7b8c> Anthony --

