Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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