summaryrefslogtreecommitdiffstats
path: root/scripts/wic
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-05-27 13:49:45 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-29 10:17:14 +0100
commit9761becc7f0a0d30198f4ee2b870ff1cb7b8f09f (patch)
tree1520f30deb59b36cc546b8c9232faefd6a74e58e /scripts/wic
parent3b627bb28c4ea2ea33050ad4884c6351e2d6ebad (diff)
downloadpoky-9761becc7f0a0d30198f4ee2b870ff1cb7b8f09f.tar.gz
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. (From OE-Core rev: f9b121d8295eb9e297627f4d623164b43349a638) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/wic')
-rwxr-xr-xscripts/wic2
1 files changed, 1 insertions, 1 deletions
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__":
313 except Exception: 313 except Exception:
314 ret = 1 314 ret = 1
315 import traceback 315 import traceback
316 traceback.print_exc(5) 316 traceback.print_exc()
317 sys.exit(ret) 317 sys.exit(ret)
318 318