From 6b9ebb6dc5be01f6a9696dca24eda19ee4c469ea Mon Sep 17 00:00:00 2001 From: mdipierro Date: Mon, 15 Oct 2012 19:39:25 -0500 Subject: [PATCH] fixed issue with storing Row in session --- VERSION | 2 +- gluon/dal.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 8e7f6c2c..8b570c0e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.1.1 (2012-10-15 16:28:43) dev +Version 2.1.1 (2012-10-15 19:39:19) dev diff --git a/gluon/dal.py b/gluon/dal.py index 175e3faa..087be33b 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -6417,10 +6417,10 @@ class Row(object): def __str__(self): ### this could be made smarter - return '' % self.__dict__ + return '' % self.as_dict() def __repr__(self): - return '' % self.__dict__ + return '' % self.as_dict() def __int__(self): return object.__getattribute__(self,'id')