summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-08-30 14:44:46 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2010-08-30 14:44:46 +0200
commit6c60ed4d81cb55cfd45b791065d2277d39cb1f0e (patch)
tree2ec89396c47a4068b1c7cab8d820b57776dcfe40
parent38e61b082dcf0e64c5629f99b7338a8ef4299512 (diff)
downloadabrt-6c60ed4d81cb55cfd45b791065d2277d39cb1f0e.tar.gz
abrt-6c60ed4d81cb55cfd45b791065d2277d39cb1f0e.tar.xz
abrt-6c60ed4d81cb55cfd45b791065d2277d39cb1f0e.zip
GUI: changed '*' to '•' rhbz#625236
-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 c698d926..57b46a4f 100644
--- a/src/gui/CReporterAssistant.py
+++ b/src/gui/CReporterAssistant.py
@@ -270,9 +270,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)