diff --git a/sulfur/src/sulfur/dialogs.py b/sulfur/src/sulfur/dialogs.py index 95f73d76c..c2cd7b451 100644 --- a/sulfur/src/sulfur/dialogs.py +++ b/sulfur/src/sulfur/dialogs.py @@ -2749,10 +2749,10 @@ def okDialog(parent, msg, title = None): dlg = gtk.MessageDialog(parent=parent, type=gtk.MESSAGE_INFO, buttons=gtk.BUTTONS_OK) - dlg.set_markup(msg) + dlg.set_markup(cleanMarkupString(msg)) if not title: title = _("Attention") - dlg.set_title( title ) + dlg.set_title(title) dlg.run() dlg.destroy()