diff options
author | Matt Wilson <msw@redhat.com> | 2001-08-21 19:01:54 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-08-21 19:01:54 +0000 |
commit | 2d8ec25e52db90b6854c97c7a37c7341397db7e0 (patch) | |
tree | 37782a6bc94f832bfb5e04ba4c9dc88dca09731d /exception.py | |
parent | cd422ac51077d7a4008a5f387d8f84e30357049c (diff) | |
download | anaconda-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.py | 3 |
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) |