diff options
author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-11-09 16:58:38 +0100 |
---|---|---|
committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-11-09 16:58:38 +0100 |
commit | 48d30ac32352545800bbc70130796a85ab7a62c3 (patch) | |
tree | 840ebd2e5e90db14be4c157676760c9ed3cfdcc3 /src/Gui/CCReporterDialog.py | |
parent | 6abf178eba9c17c43f388f3cdf509f6e3ef7cc7f (diff) | |
download | abrt-48d30ac32352545800bbc70130796a85ab7a62c3.tar.gz abrt-48d30ac32352545800bbc70130796a85ab7a62c3.tar.xz abrt-48d30ac32352545800bbc70130796a85ab7a62c3.zip |
GUI: shouldn't yell to user
- removed '!' from warning message
Diffstat (limited to 'src/Gui/CCReporterDialog.py')
-rw-r--r-- | src/Gui/CCReporterDialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Gui/CCReporterDialog.py b/src/Gui/CCReporterDialog.py index c0d3c8ef..61e65526 100644 --- a/src/Gui/CCReporterDialog.py +++ b/src/Gui/CCReporterDialog.py @@ -216,7 +216,7 @@ class ReporterDialog(): ebErrors.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse("red")) if package: lErrors.set_markup( - "<span color=\"white\">%s</span>" % _("Reporting disabled because the backtrace is unusable!\nPlease try to install debuginfo manually using command:<span color=\"blue\"> debuginfo-install %s </span>\nthen use Refresh button to regenerate the backtrace." % package[0:package.rfind('-',0,package.rfind('-'))])) + "<span color=\"white\">%s</span>" % _("Reporting disabled because the backtrace is unusable.\nPlease try to install debuginfo manually using command:<span color=\"blue\"> debuginfo-install %s </span>\nthen use Refresh button to regenerate the backtrace." % package[0:package.rfind('-',0,package.rfind('-'))])) else: lErrors.set_markup("<span color=\"white\">%s</span>" % _("The bactrace is unusable, you can't report this!")) bSend.set_sensitive(False) |