[FIX] Size of User's email address corrected

bzr revid: jvo@tinyerp.com-20100602100433-smmkiu5uol6djubf
This commit is contained in:
Jay (Open ERP) 2010-06-02 15:34:33 +05:30
parent a00a181d98
commit 15081dcb88
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ class users(osv.osv):
'view': fields.function(_get_interface_type, method=True, type='selection', fnct_inv=_set_interface_type,
selection=[('simple','Simplified'),('extended','Extended')],
string='Interface', help="Choose between the simplified interface and the extended one"),
'user_email': fields.function(_email_get, method=True, fnct_inv=_email_set, string='Email', type="char"),
'user_email': fields.function(_email_get, method=True, fnct_inv=_email_set, string='Email', type="char", size=240),
}
def read(self,cr, uid, ids, fields=None, context=None, load='_classic_read'):