From 02455ebfbb1e738e6b1fe57cb6a9b9012829ee31 Mon Sep 17 00:00:00 2001 From: Andre McCurdy Date: Tue, 12 Aug 2014 16:41:48 -0700 Subject: bitbake: fetch2/local.py: fix first line indent of search path debug output Make OE do_unpack logs slightly prettier. (Bitbake rev: cec5859dec56529d76a0a685cc67b8da29453c69) Signed-off-by: Andre McCurdy Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/fetch2/local.py') diff --git a/bitbake/lib/bb/fetch2/local.py b/bitbake/lib/bb/fetch2/local.py index 5c4e42a942..6fa188fc48 100644 --- a/bitbake/lib/bb/fetch2/local.py +++ b/bitbake/lib/bb/fetch2/local.py @@ -56,7 +56,7 @@ class Local(FetchMethod): if path[0] != "/": filespath = data.getVar('FILESPATH', d, True) if filespath: - logger.debug(2, "Searching for %s in paths: \n%s" % (path, "\n ".join(filespath.split(":")))) + logger.debug(2, "Searching for %s in paths:\n %s" % (path, "\n ".join(filespath.split(":")))) newpath = bb.utils.which(filespath, path) if not newpath: filesdir = data.getVar('FILESDIR', d, True) -- cgit v1.2.3-54-g00ecf