Fix also __slots__ to ensure proper unpickling

This commit is contained in:
Luca Beltrame
2011-07-14 10:28:12 +02:00
parent 2c5a9af76e
commit 2f8083bda6
+1 -1
View File
@@ -29,7 +29,7 @@ __docformat__ = 'restructuredtext'
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)