summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-08-30 14:44:46 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2010-11-15 16:25:50 +0100
commitec865439499f98127549c595cc0bedd9634ba1e5 (patch)
tree0ffc149b2df5774a9ed504cc7c6831293d93f110 /src
parentfb6dd0fe741142df1931005f0a8d8df100579774 (diff)
downloadabrt-ec865439499f98127549c595cc0bedd9634ba1e5.tar.gz
abrt-ec865439499f98127549c595cc0bedd9634ba1e5.tar.xz
abrt-ec865439499f98127549c595cc0bedd9634ba1e5.zip
GUI: changed '*' to '•' rhbz#625236
Diffstat (limited to 'src')
-rw-r--r--src/Gui/CReporterAssistant.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Gui/CReporterAssistant.py b/src/Gui/CReporterAssistant.py
index 54d37e97..c3736f86 100644
--- a/src/Gui/CReporterAssistant.py
+++ b/src/Gui/CReporterAssistant.py
@@ -256,9 +256,9 @@ class ReporterAssistant():
warning_lbl = None
for warning in warnings:
if warning_lbl:
- warning_lbl += "\n* %s" % warning
+ warning_lbl += "\n• %s" % warning
else:
- warning_lbl = "* %s" % warning
+ warning_lbl = "• %s" % warning
# fallback
self.lbl_errors.set_label(warning_lbl)
self.lbl_errors.set_markup(warning_lbl)