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-27 17:44:44 +0100 |
commit | f9b121d8295eb9e297627f4d623164b43349a638 (patch) | |
tree | 683a586cbc309978f6f1cea4d94b7ff36f15c345 /scripts/wic | |
parent | 053b8a4e6b9a4b02c0b1b4bc1e297a1251a901a9 (diff) | |
download | openembedded-core-f9b121d8295eb9e297627f4d623164b43349a638.tar.gz openembedded-core-f9b121d8295eb9e297627f4d623164b43349a638.tar.bz2 openembedded-core-f9b121d8295eb9e297627f4d623164b43349a638.zip |
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 <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__": except Exception: ret = 1 import traceback - traceback.print_exc(5) + traceback.print_exc() sys.exit(ret) |