Skip to content
Snippets Groups Projects
Commit 5760a5d5 authored by Leonardo Rochael Almeida's avatar Leonardo Rochael Almeida Committed by Martin Trigaux
Browse files

[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.
parent fa17b86a
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment