summaryrefslogtreecommitdiffstats
path: root/pym/portage/process.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/process.py')
-rw-r--r--pym/portage/process.py2
1 files changed, 2 insertions, 0 deletions
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)