summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-07-10 08:55:22 +0000
committerMatt Wilson <msw@redhat.com>2001-07-10 08:55:22 +0000
commitae6f6cb75e273422f821d5bb4c69f704740bb0f7 (patch)
tree1b180502d2014abdc3d7d57acb0c14988319c552 /text.py
parenta869c85303299ae2a3f1bbe23ec940f583b25cd8 (diff)
downloadanaconda-ae6f6cb75e273422f821d5bb4c69f704740bb0f7.tar.gz
anaconda-ae6f6cb75e273422f821d5bb4c69f704740bb0f7.tar.xz
anaconda-ae6f6cb75e273422f821d5bb4c69f704740bb0f7.zip
fix warning pixmap, unifiy exception text
Diffstat (limited to 'text.py')
-rw-r--r--text.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/text.py b/text.py
index bfa44ebc9..1336831cc 100644
--- a/text.py
+++ b/text.py
@@ -246,11 +246,12 @@ class InstallInterface:
return 0
def exceptionWindow(self, title, text):
- ugh = _("An internal error occurred 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")
+ ugh = "%s\n\n" % (_("An unhandled exception has occured. This "
+ "is most likely a bug. Please copy the "
+ "full text of this exception or save the crash "
+ "dump to a floppy then file a detailed bug "
+ "report against anaconda at "
+ "http://bugzilla.redhat.com/bugzilla/"),)
rc = ButtonChoiceWindow(self.screen, title, ugh + text,
buttons=[TEXT_OK_BUTTON, _("Save"), _("Debug")])