diff options
author | Erik Troan <ewt@redhat.com> | 2000-06-17 20:18:37 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-06-17 20:18:37 +0000 |
commit | fda20fb5105067985048becd486c8c8eb6e2aff1 (patch) | |
tree | 5514948907543d1e21e5afcb3e92698c5a1408a5 /text.py | |
parent | ea7d772a43e5748e492f6e8094f46d230bb942ad (diff) | |
download | anaconda-fda20fb5105067985048becd486c8c8eb6e2aff1.tar.gz anaconda-fda20fb5105067985048becd486c8c8eb6e2aff1.tar.xz anaconda-fda20fb5105067985048becd486c8c8eb6e2aff1.zip |
began adding crash dump facility
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -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): |