summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-16 23:25:10 +0000
committerMatt Wilson <msw@redhat.com>1999-08-16 23:25:10 +0000
commit7277aabe318f322140195f214c3c4a5b9ef441d0 (patch)
treed93a001329ade3f1a911ae25ad715e230c9d7369 /anaconda
parente9db63dfa0ae90131bee831cd0da4f77ed5c3ea3 (diff)
downloadanaconda-7277aabe318f322140195f214c3c4a5b9ef441d0.tar.gz
anaconda-7277aabe318f322140195f214c3c4a5b9ef441d0.tar.xz
anaconda-7277aabe318f322140195f214c3c4a5b9ef441d0.zip
package deps
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda5
1 files changed, 4 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index c9942c22b..fada6db8b 100755
--- a/anaconda
+++ b/anaconda
@@ -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