From: Zac Medico Date: Wed, 12 Aug 2009 00:19:32 +0000 (-0000) Subject: Show a traceback when spawn() fails. X-Git-Tag: v2.2_rc39~100 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=95340b583d32ca440213e6e2bf41b5315497ccb6;p=portage.git Show a traceback when spawn() fails. svn path=/main/trunk/; revision=14005 --- diff --git a/pym/portage/process.py b/pym/portage/process.py index 051a59f61..5dcf481e2 100644 --- a/pym/portage/process.py +++ b/pym/portage/process.py @@ -8,6 +8,7 @@ import os import atexit import signal import sys +import traceback import portage portage.proxy.lazyimport.lazyimport(globals(), @@ -244,6 +245,7 @@ def spawn(mycommand, env={}, opt_name=None, fd_pipes=None, returnpid=False, # propogate out of this function and cause exiting # with anything other than os._exit() sys.stderr.write("%s:\n %s\n" % (e, " ".join(mycommand))) + traceback.print_exc() sys.stderr.flush() os._exit(1)