[IMP] opening and getting data from module description file

bzr revid: xmo@openerp.com-20111209120207-3kkyvwedbjez29rl
This commit is contained in:
Xavier Morel 2011-12-09 13:02:07 +01:00
parent 80de80c7dd
commit c25475879c
1 changed files with 2 additions and 9 deletions

View File

@ -254,16 +254,9 @@ def load_information_from_description_file(module):
'depends data demo test init_xml update_xml demo_xml'.split(),
iter(list, None)))
terp_f = tools.file_open(terp_file)
try:
with tools.file_open(terp_file) as terp_f:
info.update(eval(terp_f.read()))
except Exception:
logger.notifyChannel('modules', netsvc.LOG_ERROR,
'module %s: exception while evaluating file %s' %
(module, terp_file))
raise
finally:
terp_f.close()
return info
#TODO: refactor the logger in this file to follow the logging guidelines