[FIX] import_google: remove size from selection field

lp bug: https://launchpad.net/bugs/925355 fixed

bzr revid: kjo@tinyerp.com-20120203054150-homgb5drrzcbnigf
This commit is contained in:
Kuldeep Joshi (OpenERP) 2012-02-03 11:11:50 +05:30
parent 6165f1834a
commit 227d7bb427
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 = {