[OE-core] [wic][PATCH] wic: do not strip traceback
Ed Bartosh
ed.bartosh at linux.intel.com
Wed May 27 10:49:45 UTC 2015
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 at linux.intel.com>
---
scripts/wic | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/wic b/scripts/wic
index 1e07dfe..90b36c6 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)
--
2.1.4
More information about the Openembedded-core
mailing list