diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-16 23:25:10 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-16 23:25:10 +0000 |
commit | 7277aabe318f322140195f214c3c4a5b9ef441d0 (patch) | |
tree | d93a001329ade3f1a911ae25ad715e230c9d7369 /anaconda | |
parent | e9db63dfa0ae90131bee831cd0da4f77ed5c3ea3 (diff) | |
download | anaconda-7277aabe318f322140195f214c3c4a5b9ef441d0.tar.gz anaconda-7277aabe318f322140195f214c3c4a5b9ef441d0.tar.xz anaconda-7277aabe318f322140195f214c3c4a5b9ef441d0.zip |
package deps
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -242,8 +242,11 @@ except: from string import joinfields list = traceback.format_exception (type, value, tb) text = joinfields (list, "") - intf.messageWindow (_("Exception Occured"), text) + rc = intf.exceptionWindow (_("Exception Occured"), text) intf.__del__ () + if rc: + import pdb + pdb.post_mortem (tb) os._exit (1) del intf |