From 02629c42fb09413d9da16cfe43e03338ce7db3ff Mon Sep 17 00:00:00 2001 From: Bogdan Marinescu Date: Tue, 23 Apr 2013 16:43:45 +0300 Subject: [PATCH] bitbake: remove stack trace depth limitation In case of an error in bitbake, the stack trace is limited to 5 items. This is an endless source of confusion and it makes bugs reports impractical, since a full stack trace can't be included in the bug report. This patch simply removes the depth limit. Signed-off-by: Bogdan Marinescu Signed-off-by: Richard Purdie --- bin/bitbake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/bitbake b/bin/bitbake index f96c1a1b6fc..0e69207de7e 100755 --- a/bin/bitbake +++ b/bin/bitbake @@ -276,6 +276,6 @@ if __name__ == "__main__": except Exception: ret = 1 import traceback - traceback.print_exc(5) + traceback.print_exc() sys.exit(ret) -- 2.47.3