summaryrefslogtreecommitdiffstats
path: root/constants.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-03-29 16:55:28 +0000
committerJeremy Katz <katzj@redhat.com>2005-03-29 16:55:28 +0000
commitf42bd73758acead907996db493b145aff8f3b294 (patch)
treec027d54b43689e20bec1ff77ef7983331ffc2856 /constants.py
parent9f4d9f44cf31c6480fa998ba48d73f1516d80a93 (diff)
downloadanaconda-f42bd73758acead907996db493b145aff8f3b294.tar.gz
anaconda-f42bd73758acead907996db493b145aff8f3b294.tar.xz
anaconda-f42bd73758acead907996db493b145aff8f3b294.zip
2005-03-29 Jeremy Katz <katzj@redhat.com>
* constants.py: Make bugzilla URL more changeable. * iw/xconfig_gui.py (XConfigWindow.getNext): Likewise. * packages.py (betaNagScreen): Likewise. * hdrlist.py (GroupSet.__main__): Nuke some dead code. * Makefile (DESTDIR): Likewise. * image.py (findIsoImages): Genericize comment. * loader2/urlinstall.c: Likewise.
Diffstat (limited to 'constants.py')
-rw-r--r--constants.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/constants.py b/constants.py
index a9af81949..970c2e6cb 100644
--- a/constants.py
+++ b/constants.py
@@ -68,16 +68,17 @@ import product
productName = product.productName
productVersion = product.productVersion
productPath = product.productPath
+bugzillaUrl = "https://bugzilla.redhat.com/bugzilla/"
-exceptionText = N_("An unhandled exception has occurred. 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/")
+exceptionText = _("An unhandled exception has occurred. 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 "
+ "%s") %(bugzillaUrl,)
-exceptionTextNoFloppy = N_("An unhandled exception has occurred. This "
- "is most likely a bug. Please copy the "
- "full text of this exception and file a detailed "
- "bug report against anaconda at "
- "http://bugzilla.redhat.com/bugzilla/")
+exceptionTextNoFloppy = _("An unhandled exception has occurred. This "
+ "is most likely a bug. Please copy the "
+ "full text of this exception and file a detailed "
+ "bug report against anaconda at "
+ "%s") %(bugzillaUrl,)