Browse Source

fetch2/local.py: fix first line indent of search path debug output

Make OE do_unpack logs slightly prettier.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Andre McCurdy 9 years ago
parent
commit
cec5859dec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/bb/fetch2/local.py

+ 1 - 1
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)