summaryrefslogtreecommitdiffstats
path: root/src/Gui/CCMainWindow.py
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-12-09 14:54:51 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-12-09 14:54:51 +0100
commit1ab4f7ab3ca04e0b8ba17eec75cf18345d6b3fbc (patch)
tree902f48322056c0f53a3ef5b965161017c36a1311 /src/Gui/CCMainWindow.py
parente7541bf72e56f56c9af45fccbb8f77efe35dcb94 (diff)
downloadabrt-1ab4f7ab3ca04e0b8ba17eec75cf18345d6b3fbc.tar.gz
abrt-1ab4f7ab3ca04e0b8ba17eec75cf18345d6b3fbc.tar.xz
abrt-1ab4f7ab3ca04e0b8ba17eec75cf18345d6b3fbc.zip
fix incorrect wording
This looked wrong: "This crash has been reported, you can find the report(s) at: Kernel oops report was uploaded." Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Gui/CCMainWindow.py')
-rw-r--r--src/Gui/CCMainWindow.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py
index d97b34e..e429908 100644
--- a/src/Gui/CCMainWindow.py
+++ b/src/Gui/CCMainWindow.py
@@ -218,7 +218,9 @@ class MainWindow():
dump = dumpsListStore.get_value(dumpsListStore.get_iter(path[0]), dumpsListStore.get_n_columns()-1)
#move this to Dump class
if dump.isReported():
- report_label = _("<b>This crash has been reported, you can find the report(s) at:</b>\n")
+ report_label = _("<b>This crash has been reported:</b>\n")
+ # plugin message follows, but at least in case of kerneloops,
+ # it is not informative (no URL to the report)
for message in dump.getMessage().split('\n'):
if message:
if "http" in message[0:5] or "file:///"[0:8] in message: