[FIX] wizard exception replaced by osv exception

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

bzr revid: jvo@tinyerp.com-20100927180506-w5oq9ia1pjgjdyqd
This commit is contained in:
Jay (OpenERP) 2010-09-27 23:35:06 +05:30
parent e96ad55694
commit 573ea5722f
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ class base_module_upgrade(osv.osv_memory):
if dep_mod.state in ('unknown','uninstalled'):
unmet_packages.append(dep_mod.name)
if len(unmet_packages):
raise wizard.except_wizard('Unmet dependency !', 'Following modules are uninstalled or unknown. \n\n'+'\n'.join(unmet_packages))
raise osv.except_osv('Unmet dependency !', 'Following modules are uninstalled or unknown. \n\n'+'\n'.join(unmet_packages))
mod_obj.download(cr, uid, ids, context=context)
cr.commit()
db, pool = pooler.restart_pool(cr.dbname, update_module=True)