]> code.ossystems Code Review - openembedded-core.git/commitdiff
wic: do not strip traceback
authorEd Bartosh <ed.bartosh@linux.intel.com>
Wed, 27 May 2015 10:49:45 +0000 (13:49 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 27 May 2015 16:44:44 +0000 (17:44 +0100)
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>
scripts/wic

index 1e07dfe922c87ac34bc621edf9ff1ad732fd44ff..90b36c68acf616252fab4bb6f9098ab09c58f2a1 100755 (executable)
@@ -313,6 +313,6 @@ if __name__ == "__main__":
     except Exception:
         ret = 1
         import traceback
-        traceback.print_exc(5)
+        traceback.print_exc()
     sys.exit(ret)