summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-03-19 11:18:58 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-20 15:21:32 +0000
commit30e35fa094d4ee75796f48b57d37b35cf73d935a (patch)
tree63ee2f310482eebdc24fcc1b38d358642d95c474 /bitbake/bin
parentfd3514f35adc938c2c405aae0e283a9df1395c9b (diff)
downloadpoky-30e35fa094d4ee75796f48b57d37b35cf73d935a.tar.gz
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>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bitbake-layers2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-layers b/bitbake/bin/bitbake-layers
index c85e26edc8..bbd56fe219 100755
--- a/bitbake/bin/bitbake-layers
+++ b/bitbake/bin/bitbake-layers
@@ -213,7 +213,7 @@ Options:
213 items_listed = True; 213 items_listed = True;
214 214
215 if not items_listed: 215 if not items_listed:
216 logger.note('No overlayed files found') 216 logger.plain('No overlayed files found.')
217 217
218 218
219 def do_show_recipes(self, args): 219 def do_show_recipes(self, args):