From 867b01c3ca37b37a578183f671d4fd2fbbed4fd4 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 21 Jan 2010 10:44:34 +0000 Subject: [PATCH] bitbake/__init__.py: Fix bb.plain and bb.warn function, initial patch from Petri Lehtinen Signed-off-by: Richard Purdie --- bitbake/lib/bb/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py index f2f8f656d8..aa0c6de311 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/lib/bb/__init__.py @@ -98,7 +98,7 @@ class MalformedUrl(Exception): ####################################################################### def plain(*args): - bb.msg.warn(''.join(args)) + bb.msg.plain(''.join(args)) def debug(lvl, *args): bb.msg.debug(lvl, None, ''.join(args)) @@ -107,7 +107,7 @@ def note(*args): bb.msg.note(1, None, ''.join(args)) def warn(*args): - bb.msg.warn(1, None, ''.join(args)) + bb.msg.warn(None, ''.join(args)) def error(*args): bb.msg.error(None, ''.join(args))