summaryrefslogtreecommitdiffstats
path: root/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'constants.py')
-rw-r--r--constants.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/constants.py b/constants.py
index 45f3d14be..0209bdc66 100644
--- a/constants.py
+++ b/constants.py
@@ -74,5 +74,12 @@ bugzillaUrl = product.bugUrl
exceptionText = _("An unhandled exception has occurred. This "
"is most likely a bug. Please save a copy of "
- "the detailed exception and file a bug report "
- "against anaconda at %s" %(bugzillaUrl,))
+ "the detailed exception and file a bug report")
+if not bugzillaUrl:
+ # this string will be combined with "An unhandled exception"...
+ # the leading space is not a typo.
+ exceptionText += _(" with the provider of this software.")
+else:
+ # this string will be combined with "An unhandled exception"...
+ # the leading space is not a typo.
+ exceptionText += _(" against anaconda at %s") %(bugzillaUrl,)