[FIX] addons/__init__.py: wrong number of arguments for format string

bzr revid: olt@tinyerp.com-20101217110210-sxqhhvj7dh96h58q
This commit is contained in:
olt@tinyerp.com 2010-12-17 12:02:10 +01:00
parent 65a98d3d03
commit a536adce04
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, skip_cleanup=
try:
_load_data(cr, module_name, id_map, mode, 'test')
except Exception, e:
logging.getLogger('test').exception('Tests failed to execute in %s module %s', module_name)
logging.getLogger('test').exception('Tests failed to execute in module %s', module_name)
finally:
if tools.config.options['test_commit']:
cr.commit()