Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraleherbau2011-04-05 10:13:09 +0000
committeraleherbau2011-04-05 10:13:09 +0000
commit559ca401ad7f4f02875edeefaf2b56dc79702000 (patch)
treef171952d1d842e357bda44a10dd23828e4b16eef /python/src/tcf/services/stacktrace.py
parent311c18e8e00e5d080d22bd2525dd46f94e1b0ab4 (diff)
downloadorg.eclipse.tcf-559ca401ad7f4f02875edeefaf2b56dc79702000.tar.gz
org.eclipse.tcf-559ca401ad7f4f02875edeefaf2b56dc79702000.tar.xz
org.eclipse.tcf-559ca401ad7f4f02875edeefaf2b56dc79702000.zip
Implemented registers service proxy
Diffstat (limited to 'python/src/tcf/services/stacktrace.py')
-rw-r--r--python/src/tcf/services/stacktrace.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python/src/tcf/services/stacktrace.py b/python/src/tcf/services/stacktrace.py
index ae8a6d5cf..1cb47b363 100644
--- a/python/src/tcf/services/stacktrace.py
+++ b/python/src/tcf/services/stacktrace.py
@@ -92,7 +92,10 @@ class StackTraceContext(object):
"""
def __init__(self, props):
self._props = props or {}
-
+
+ def __str__(self):
+ return "[Stack Trace Context %s]" % self._props
+
def getID(self):
"""
Get Context ID.

Back to the top