[FIX] thunderbird: fields.char size kwarg is an integer.

bzr revid: vmt@openerp.com-20110824125949-9flddp034glld69u
This commit is contained in:
Vo Minh Thu 2011-08-24 14:59:49 +02:00
parent 0c102a578c
commit c978be0052
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class thunderbird_installer(osv.osv_memory):
'pdf_name':fields.char('File name', size=64),
'thunderbird':fields.boolean('Thunderbird Plug-in', help="Allows you to select an object that you would like to add to your email and its attachments."),
'plugin_file':fields.binary('Thunderbird Plug-in', readonly=True, help="Thunderbird plug-in file. Save as this file and install this plug-in in thunderbird."),
'pdf_file':fields.char('Installation Manual', size="264", help="The documentation file :- how to install Thunderbird Plug-in.", readonly=True),
'pdf_file':fields.char('Installation Manual', size=264, help="The documentation file :- how to install Thunderbird Plug-in.", readonly=True),
'description':fields.text('Description', readonly=True)
}