[FIX] fields.py: fix old field to new field convertion

This commit is contained in:
Christophe Simonis 2014-08-07 13:01:03 +02:00
parent a949b09c3e
commit 50a67c8e9b
1 changed files with 1 additions and 1 deletions

View File

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