Skip to content

Commit

Permalink
Fix also __slots__ to ensure proper unpickling
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeltrame committed Jul 14, 2011
1 parent 2c5a9af commit 2f8083b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tablib/core.py
Expand Up @@ -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)
Expand Down

0 comments on commit 2f8083b

Please sign in to comment.