From fda20fb5105067985048becd486c8c8eb6e2aff1 Mon Sep 17 00:00:00 2001 From: Erik Troan Date: Sat, 17 Jun 2000 20:18:37 +0000 Subject: began adding crash dump facility --- text.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'text.py') diff --git a/text.py b/text.py index ed72a7472..177b1f5dd 100644 --- a/text.py +++ b/text.py @@ -779,10 +779,18 @@ class InstallInterface: buttons = [ _("OK") ]) def exceptionWindow(self, title, text): - rc = ButtonChoiceWindow(self.screen, title, text, - buttons = [ _("OK"), _("Debug") ]) + ugh = _("An internal error occured in the installation program. " + "Please report this error to Red Hat (through the " + "bugzilla.redhat.com web site) as soon as possible. The " + "information on this failure may be saved to a floppy disk, " + "and will help Red hat in fixing the problem.\n\n") + + rc = ButtonChoiceWindow(self.screen, title, ugh + text, + buttons = [ _("OK"), _("Save"), _("Debug") ]) if rc == string.lower (_("Debug")): return 1 + elif rc == string.lower (_("Save")): + return 2 return None def waitWindow(self, title, text): -- cgit