aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
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-27 17:44:44 +0100
commitf9b121d8295eb9e297627f4d623164b43349a638 (patch)
tree683a586cbc309978f6f1cea4d94b7ff36f15c345 /scripts
parent053b8a4e6b9a4b02c0b1b4bc1e297a1251a901a9 (diff)
downloadopenembedded-core-contrib-f9b121d8295eb9e297627f4d623164b43349a638.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. Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-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__":
except Exception:
ret = 1
import traceback
- traceback.print_exc(5)
+ traceback.print_exc()
sys.exit(ret)