The dynamic message domain was introduced by Richard Purdie with the following patch: http://git.yoctoproject.org/cgit.cgi/poky/commit/?id=a6c48298b17e6a5844b3638b422fe226e3b67b89
Signed-off-by: Samuel Stirtzel <[email protected]> --- meta/lib/oe/data.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/lib/oe/data.py b/meta/lib/oe/data.py index 4b4d03e..af900be 100644 --- a/meta/lib/oe/data.py +++ b/meta/lib/oe/data.py @@ -15,4 +15,4 @@ def typed_value(key, d): try: return oe.maketype.create(d.getVar(key, True) or '', var_type, **flags) except (TypeError, ValueError), exc: - bb.msg.fatal(bb.msg.domain.Data, "%s: %s" % (key, str(exc))) + bb.msg.fatal("Data", "%s: %s" % (key, str(exc))) -- 1.7.4.1 _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
