summaryrefslogtreecommitdiffstats
path: root/src/Gui
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-02 20:03:21 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-02 20:03:21 +0200
commitcb8148e315e20e4a2d8a65b7b0bdd832352dad97 (patch)
tree86489357847fe5100e0d83bc03e34509eedf8756 /src/Gui
parentc5aefeb27daed6be4882a5f66e6596298fbc1d69 (diff)
downloadabrt-cb8148e315e20e4a2d8a65b7b0bdd832352dad97.tar.gz
abrt-cb8148e315e20e4a2d8a65b7b0bdd832352dad97.tar.xz
abrt-cb8148e315e20e4a2d8a65b7b0bdd832352dad97.zip
CommLayerServerDBus: make it resilient (again) against malformed dbus calls
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Gui')
-rw-r--r--src/Gui/CCReporterDialog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Gui/CCReporterDialog.py b/src/Gui/CCReporterDialog.py
index e9de8ca0..5d0a0e29 100644
--- a/src/Gui/CCReporterDialog.py
+++ b/src/Gui/CCReporterDialog.py
@@ -95,7 +95,7 @@ class ReporterDialog():
for row in self.reportListStore:
rowe = dict(zip(attributes, row))
if (rowe["attachment"] or (rowe["editable"] and rowe["attachment"])) and rowe["send"]:
- result = gui_question_dialog(_("<b>WARNING</b>, you're about to send data that might contain some sensitive informations!\n"
+ result = gui_question_dialog(_("<b>WARNING</b>, you're about to send data which might contain sensitive information.\n"
"Do you really want to send <b>%s</b>?\n" % rowe["item"]), self.window)
if result == gtk.RESPONSE_NO:
row[attributes.index("send")] = False