From b3d48c6de6dcee6fa9eef5a02e74a8dac5cd7ca5 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 16 Apr 2019 17:39:08 +1000 Subject: [PATCH] need rich text in install error, as err msgs have html --- aqt/addons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/addons.py b/aqt/addons.py index da9107378..5c318bc29 100644 --- a/aqt/addons.py +++ b/aqt/addons.py @@ -574,7 +574,7 @@ class AddonsDialog(QDialog): showInfo(log_html, parent=self, textFormat="rich") if errs: msg = _("Please report this to the respective add-on author(s).") - showWarning("\n\n".join(errs + [msg]), parent=self, textFormat="plain") + showWarning("

".join(errs + [msg]), parent=self, textFormat="rich") self.redrawAddons()