From f9b121d8295eb9e297627f4d623164b43349a638 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Wed, 27 May 2015 13:49:45 +0300 Subject: wic: do not strip traceback Printing only first 5 levels of wic traceback makes it almost useless as the most valuable part of it is stripped. Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- scripts/wic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wic b/scripts/wic index 1e07dfe922..90b36c68ac 100755 --- a/scripts/wic +++ b/scripts/wic @@ -313,6 +313,6 @@ if __name__ == "__main__": except Exception: ret = 1 import traceback - traceback.print_exc(5) + traceback.print_exc() sys.exit(ret) -- cgit 1.2.3-korg