diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-01-18 16:31:03 +0100 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-01-18 16:31:03 +0100 |
| commit | b8ef905c6455ef98cd7fa488de7d602a70bd57dc (patch) | |
| tree | 8d99e35017aa08773a8ee63487a67bac983bd6f7 /src/Hooks | |
| parent | 675ef3624349fbfbe165913270f24a947e0cb8d0 (diff) | |
| parent | 3cd4d651565e4afcc3c72bd32bb9ce2285b5c93d (diff) | |
conflict
Diffstat (limited to 'src/Hooks')
| -rw-r--r-- | src/Hooks/abrt_exception_handler.py.in | 2 |
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 |
