diff options
Diffstat (limited to 'lib/extras.py')
-rw-r--r-- | lib/extras.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extras.py b/lib/extras.py index 67e50b2..3308f78 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -280,7 +280,7 @@ class RealDictRow(dict): return dict.__setitem__(self, name, value) def __getstate__(self): - return (self.copy(), self._column_mapping[:]) + return self.copy(), self._column_mapping[:] def __setstate__(self, data): self.update(data[0]) |