]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake/utils.py: Ensure the last lines of functions are printed in tracebacks
authorRichard Purdie <rpurdie@linux.intel.com>
Sun, 5 Dec 2010 22:51:38 +0000 (22:51 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Sun, 5 Dec 2010 22:51:38 +0000 (22:51 +0000)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/utils.py

index c2e6ff08edf41b4024848945ae7b895e456fa316..ed28f86c4b80d26fa1a8492b2add1fe8b5942250 100644 (file)
@@ -304,9 +304,12 @@ def _print_trace(body, line):
     """
     # print the environment of the method
     min_line = max(1, line-4)
-    max_line = min(line + 4, len(body)-1)
+    max_line = min(line + 4, len(body))
     for i in range(min_line, max_line + 1):
-        bb.msg.error(bb.msg.domain.Util, "\t%.4d:%s" % (i, body[i-1]) )
+        if line == i:
+            bb.msg.error(bb.msg.domain.Util, " *** %.4d:%s" % (i, body[i-1]) )
+        else:
+            bb.msg.error(bb.msg.domain.Util, "     %.4d:%s" % (i, body[i-1]) )
 
 
 def better_compile(text, file, realfile, mode = "exec"):