From: Ed Bartosh Date: Wed, 27 May 2015 10:49:45 +0000 (+0300) Subject: wic: do not strip traceback X-Git-Tag: 2015-10~1721 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f9b121d8295eb9e297627f4d623164b43349a638;p=openembedded-core.git 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 --- 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)