diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-05-27 13:49:45 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-29 10:17:14 +0100 |
commit | 9761becc7f0a0d30198f4ee2b870ff1cb7b8f09f (patch) | |
tree | 1520f30deb59b36cc546b8c9232faefd6a74e58e /scripts/wic | |
parent | 3b627bb28c4ea2ea33050ad4884c6351e2d6ebad (diff) | |
download | poky-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-x | scripts/wic | 2 |
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 | ||