[IMP] Small code cleaning.

bzr revid: tde@openerp.com-20120213152152-cp4c6akarz1k45u1
This commit is contained in:
Thibault Delavallée 2012-02-13 16:21:52 +01:00
parent a22726ffe6
commit 35446546d3
1 changed files with 1 additions and 2 deletions

View File

@ -86,8 +86,7 @@ class account_installer(osv.osv_memory):
company_ids = self.pool.get('res.company').search(cr, uid, [], context=context)
cr.execute("SELECT company_id FROM account_account WHERE active = 't' AND account_account.parent_id IS NULL AND name != %s", ("Chart For Automated Tests",))
configured_cmp = [r[0] for r in cr.fetchall()]
unconfigured_cmp = list(set(company_ids)-set(configured_cmp))
return unconfigured_cmp
return list(set(company_ids)-set(configured_cmp))
def check_unconfigured_cmp(self, cr, uid, context=None):
""" check if there are still unconfigured companies """