[oe-commits] Ed Bartosh : wic: do not strip traceback

git at git.openembedded.org git at git.openembedded.org
Wed May 27 16:48:43 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: f9b121d8295eb9e297627f4d623164b43349a638
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=f9b121d8295eb9e297627f4d623164b43349a638

Author: Ed Bartosh <ed.bartosh at linux.intel.com>
Date:   Wed May 27 13:49:45 2015 +0300

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 at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 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)
 



More information about the Openembedded-commits mailing list