From 9786ea5124de23dca8e7905d48d16180b43f8578 Mon Sep 17 00:00:00 2001 From: Massimo DiPierro Date: Tue, 5 Jun 2012 18:00:59 -0500 Subject: [PATCH] Row.__str__ --- VERSION | 2 +- gluon/dal.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 44d73cdc..86fd44e8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-06-05 17:53:24) dev +Version 2.00.0 (2012-06-05 18:00:56) dev diff --git a/gluon/dal.py b/gluon/dal.py index 5cb67e9d..e314156c 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -6038,6 +6038,10 @@ class Row(dict): def __setattr__(self, key, value): self[key] = value + def __str__(self): + ### this could be made smarter + return '' + def __repr__(self): return ''