diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-07 17:06:19 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-07 17:06:19 +0000 |
commit | 66e84b3604e03bdd58431ff18af6affad29e7a3a (patch) | |
tree | dc1be293c6a3115b7a960ad5b9bd1d7fac5bb94b /anaconda | |
parent | dffe41b68307b0669b679998deecb490eddf9754 (diff) | |
download | anaconda-66e84b3604e03bdd58431ff18af6affad29e7a3a.tar.gz anaconda-66e84b3604e03bdd58431ff18af6affad29e7a3a.tar.xz anaconda-66e84b3604e03bdd58431ff18af6affad29e7a3a.zip |
more partition fixes, other fixes
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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 |