summaryrefslogtreecommitdiffstats
path: root/src/Hooks
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-01-18 16:31:03 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2010-01-18 16:31:03 +0100
commitb8ef905c6455ef98cd7fa488de7d602a70bd57dc (patch)
tree8d99e35017aa08773a8ee63487a67bac983bd6f7 /src/Hooks
parent675ef3624349fbfbe165913270f24a947e0cb8d0 (diff)
parent3cd4d651565e4afcc3c72bd32bb9ce2285b5c93d (diff)
conflict
Diffstat (limited to 'src/Hooks')
-rw-r--r--src/Hooks/abrt_exception_handler.py.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Hooks/abrt_exception_handler.py.in b/src/Hooks/abrt_exception_handler.py.in
index a0b0519..e0e1954 100644
--- a/src/Hooks/abrt_exception_handler.py.in
+++ b/src/Hooks/abrt_exception_handler.py.in
@@ -213,7 +213,7 @@ def handleMyException((etype, value, tb)):
text += ("\nLocal variables in innermost frame:\n")
try:
for (key, val) in frame.f_locals.items():
- text += "%s: %s\n" % (key, val)
+ text += "%s: %s\n" % (key, repr(val))
except:
pass