summaryrefslogtreecommitdiffstats
path: root/exception.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-08-21 19:01:54 +0000
committerMatt Wilson <msw@redhat.com>2001-08-21 19:01:54 +0000
commit2d8ec25e52db90b6854c97c7a37c7341397db7e0 (patch)
tree37782a6bc94f832bfb5e04ba4c9dc88dca09731d /exception.py
parentcd422ac51077d7a4008a5f387d8f84e30357049c (diff)
downloadanaconda-2d8ec25e52db90b6854c97c7a37c7341397db7e0.tar.gz
anaconda-2d8ec25e52db90b6854c97c7a37c7341397db7e0.tar.xz
anaconda-2d8ec25e52db90b6854c97c7a37c7341397db7e0.zip
let us know about our broken exception dumper
Diffstat (limited to 'exception.py')
-rw-r--r--exception.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/exception.py b/exception.py
index ce15eaa0b..08e319acb 100644
--- a/exception.py
+++ b/exception.py
@@ -138,7 +138,8 @@ def dumpException(out, text, tb, dispatch):
out.write("\n\n")
dumpClass(dispatch, out)
except:
- out.write("Exception occured during state dump\n")
+ out.write("\nException occured during state dump:\n")
+ traceback.print_exc(None, out)
def handleException(dispatch, intf, (type, value, tb)):
list = traceback.format_exception (type, value, tb)