From cab63e02c873ffa86a4688342d35ae72ca321625 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 25 Sep 2010 05:53:13 -0400 Subject: [PATCH] Module namespace change. --- tablib/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tablib/core.py b/tablib/core.py index 2c9811a..52a8faa 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -230,7 +230,7 @@ class Databook(object): @classmethod def _register_formats(cls): """Adds format properties.""" - for fmt in formats.formats: + for fmt in formats: try: setattr(cls, fmt.title, property(fmt.export_book)) except Exception, why: