diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-31 12:46:38 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-31 13:18:12 +0100 |
commit | 6069175e9bb97ace100bb5e99b6104d33163a3a2 (patch) | |
tree | 12f21f91b10b1baf4edaf25c39b3fc56acb95205 /scripts/combo-layer | |
parent | f0b21c0c1a5f50126eff098568a792a1be85f422 (diff) | |
download | openembedded-core-contrib-6069175e9bb97ace100bb5e99b6104d33163a3a2.tar.gz |
scripts, lib: Don't limit traceback lengths to arbitrary values
There appears to have been a lot of copy and pasting of the code
which prints tracebacks upon failure and limits the stack trace to
5 entries. This obscures the real error and is very confusing to the user
it look me an age to work out why some tracebacks weren't useful.
This patch removes the limit, making tracebacks much more useful for
debugging.
[YOCTO #9230]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/combo-layer')
-rwxr-xr-x | scripts/combo-layer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/combo-layer b/scripts/combo-layer index 09a53a27e4b..91270415fc5 100755 --- a/scripts/combo-layer +++ b/scripts/combo-layer @@ -920,5 +920,5 @@ if __name__ == "__main__": except Exception: ret = 1 import traceback - traceback.print_exc(5) + traceback.print_exc() sys.exit(ret) |