From 5760a5d547bb1922b4faf4b9f5eed4e5e4bb0eda Mon Sep 17 00:00:00 2001 From: Leonardo Rochael Almeida Date: Wed, 3 Jun 2015 02:28:56 +0200 Subject: [PATCH] [IMP] YAML: Better Error message for bad xml_id Use the original xml_id, which is present in the file, instead of the checked one. --- openerp/tools/yaml_import.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openerp/tools/yaml_import.py b/openerp/tools/yaml_import.py index a910b6c9999..9393e836a6d 100644 --- a/openerp/tools/yaml_import.py +++ b/openerp/tools/yaml_import.py @@ -165,9 +165,9 @@ class YamlInterpreter(object): _, id = self.pool['ir.model.data'].get_object_reference(self.cr, self.uid, module, checked_xml_id) self.id_map[xml_id] = id except ValueError: - raise ValueError("""%s not found when processing %s. + raise ValueError("""%r not found when processing %s. This Yaml file appears to depend on missing data. This often happens for - tests that belong to a module's test suite and depend on each other.""" % (checked_xml_id, self.filename)) + tests that belong to a module's test suite and depend on each other.""" % (xml_id, self.filename)) return id