bitbake-layers: fix traceback in show-overlayed with nothing overlayed

There is no logger.note, use logger.plain instead (which is what we
really want here anyway.)

(Bitbake rev: c4f7fd708c48d4323db4bbeb3074f576f5be7aa2)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Paul Eggleton 2012-03-19 11:18:58 +00:00 committed by Richard Purdie
parent fd3514f35a
commit 30e35fa094
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ Options:
items_listed = True;
if not items_listed:
logger.note('No overlayed files found')
logger.plain('No overlayed files found.')
def do_show_recipes(self, args):