summaryrefslogtreecommitdiffstats
path: root/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 14:12:02 +0000
commitc4f7fd708c48d4323db4bbeb3074f576f5be7aa2 (patch)
treefc06cacc0a1b80db8ddb59adeff135eed1559a28 /bin
parent5a1e62a8cdd4f0253b0dc59046b3b4c3186af461 (diff)
downloadbitbake-c4f7fd708c48d4323db4bbeb3074f576f5be7aa2.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.) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bitbake-layers2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake-layers b/bin/bitbake-layers
index c85e26edc..bbd56fe21 100755
--- a/bin/bitbake-layers
+++ b/bin/bitbake-layers
@@ -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):