From 2f8083bda6d78246d41d4cf26f19c5bb447de30f Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Thu, 14 Jul 2011 10:28:12 +0200 Subject: [PATCH] Fix also __slots__ to ensure proper unpickling --- tablib/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tablib/core.py b/tablib/core.py index eeb319d3..4e2d5d6b 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -29,7 +29,7 @@ class Row(object): """Internal Row object. Mainly used for filtering.""" - __slots__ = ['tuple', '_row', 'tags'] + __slots__ = ['_row', 'tags'] def __init__(self, row=list(), tags=list()): self._row = list(row)