[MERGE] lp:925355 (import_google: remove size limit on selection field)

bzr revid: rco@openerp.com-20120203084045-t9toj9v9oy62q4jy
This commit is contained in:
Raphael Collet 2012-02-03 09:40:45 +01:00
commit 091f19951f
1 changed files with 2 additions and 2 deletions

View File

@ -100,8 +100,8 @@ class synchronize_google(osv.osv_memory):
'create_partner': fields.selection([('create_all','Create partner for each contact'),('create_address','Import only address')],'Options'),
'customer': fields.boolean('Customer', help="Check this box to set newly created partner as Customer."),
'supplier': fields.boolean('Supplier', help="Check this box to set newly created partner as Supplier."),
'group_name': fields.selection(_get_group, "Group Name", size=32,help="Choose which group to import, By default it takes all."),
'calendar_name': fields.selection(_get_calendars, "Calendar Name", size=32),
'group_name': fields.selection(_get_group, "Group Name",help="Choose which group to import, By default it takes all."),
'calendar_name': fields.selection(_get_calendars, "Calendar Name"),
}
_defaults = {