summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-07 17:06:19 +0000
committerMatt Wilson <msw@redhat.com>1999-08-07 17:06:19 +0000
commit66e84b3604e03bdd58431ff18af6affad29e7a3a (patch)
treedc1be293c6a3115b7a960ad5b9bd1d7fac5bb94b /anaconda
parentdffe41b68307b0669b679998deecb490eddf9754 (diff)
downloadanaconda-66e84b3604e03bdd58431ff18af6affad29e7a3a.tar.gz
anaconda-66e84b3604e03bdd58431ff18af6affad29e7a3a.tar.xz
anaconda-66e84b3604e03bdd58431ff18af6affad29e7a3a.zip
more partition fixes, other fixes
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda9
1 files changed, 7 insertions, 2 deletions
diff --git a/anaconda b/anaconda
index bc3699263..9bbca6919 100755
--- a/anaconda
+++ b/anaconda
@@ -232,8 +232,13 @@ try:
"install chapter of the Official Red Hat Linux User's Guide."))
except:
- exc = sys.exc_info()
- intf.exceptionWindow (exc)
+ (type, value, tb) = sys.exc_info()
+ import traceback
+ from string import joinfields
+ list = traceback.format_exception (type, value, tb)
+ text = joinfields (list, "")
+ intf.messageWindow (_("Exception Occured"), text)
+ intf.__del__ ()
os._exit (1)
del intf