[IMP] move comment to the right line

bzr revid: mat@openerp.com-20131008105412-pqxpo2q12odjyqp4
This commit is contained in:
Martin Trigaux 2013-10-08 12:54:12 +02:00
parent 241c054b35
commit 9680b1cd39
1 changed files with 1 additions and 1 deletions

View File

@ -229,8 +229,8 @@ class char(_column):
def __init__(self, string="unknown", size=None, **args):
_column.__init__(self, string=string, size=size or None, **args)
# self._symbol_set_char defined to keep the backward compatibility
self._symbol_f = self._symbol_set_char = lambda x: _symbol_set_char(self, x)
# use lamda function to be able to get the field size
self._symbol_f = self._symbol_set_char = lambda x: _symbol_set_char(self, x)
self._symbol_set = (self._symbol_c, self._symbol_f)