fixed issue with storing Row in session

This commit is contained in:
mdipierro
2012-10-15 19:39:25 -05:00
parent e2e843d2ed
commit 6b9ebb6dc5
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.1.1 (2012-10-15 16:28:43) dev
Version 2.1.1 (2012-10-15 19:39:19) dev
+2 -2
View File
@@ -6417,10 +6417,10 @@ class Row(object):
def __str__(self):
### this could be made smarter
return '<Row %s>' % self.__dict__
return '<Row %s>' % self.as_dict()
def __repr__(self):
return '<Row %s>' % self.__dict__
return '<Row %s>' % self.as_dict()
def __int__(self):
return object.__getattribute__(self,'id')