From 121cf46aec71486645031e73343c7f24f4c603ad Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 25 Sep 2010 05:04:51 -0400 Subject: [PATCH] Corrected always-false condition. --- tablib/core.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tablib/core.py b/tablib/core.py index bd07f10..551a326 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -226,10 +226,7 @@ class Databook(object): def __repr__(self): - try: - return '<%s databook>' % (self.title.lower()) - except AttributeError: - return '' + return '' def add_sheet(self, dataset):