Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'python/src/tcf/services/remote/ProcessesProxy.py')
-rw-r--r--python/src/tcf/services/remote/ProcessesProxy.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/src/tcf/services/remote/ProcessesProxy.py b/python/src/tcf/services/remote/ProcessesProxy.py
index bb9b5f9a6..c4fbc901b 100644
--- a/python/src/tcf/services/remote/ProcessesProxy.py
+++ b/python/src/tcf/services/remote/ProcessesProxy.py
@@ -1,5 +1,5 @@
# *****************************************************************************
-# * Copyright (c) 2011, 2013 Wind River Systems, Inc. and others.
+# * Copyright (c) 2011, 2013-2014 Wind River Systems, Inc. and others.
# * All rights reserved. This program and the accompanying materials
# * are made available under the terms of the Eclipse Public License v1.0
# * which accompanies this distribution, and is available at
@@ -239,6 +239,8 @@ class ChannelEventListener(channel.EventListener):
else:
raise IOError("Processes service: unknown event: " + name)
except Exception as x:
+ import sys
+ x.tb = sys.exc_info()[2]
self.service.channel.terminate(x)

Back to the top