[FIX] fields.py: correct copy/paste error, use the right attribute

This commit is contained in:
Christophe Simonis 2014-08-07 13:50:27 +02:00
parent 5bd3c02bec
commit 407c1be1e8
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ class _column(object):
('domain', self._domain),
('context', self._context),
('change_default', self.change_default),
('deprecated', self.change_default),
('deprecated', self.deprecated),
]
return dict(item for item in items if item[1])