From: Richard Purdie Date: Thu, 21 Jan 2010 10:44:34 +0000 (+0000) Subject: bitbake/__init__.py: Fix bb.plain and bb.warn function, initial patch from Petri... X-Git-Tag: 2011-1~6395 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=867b01c3ca37b37a578183f671d4fd2fbbed4fd4;p=openembedded-core.git bitbake/__init__.py: Fix bb.plain and bb.warn function, initial patch from Petri Lehtinen Signed-off-by: Richard Purdie --- 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))