From a2124e2ee8e726a97a13fcfc081e4051dabf1e63 Mon Sep 17 00:00:00 2001 From: Glutanimate Date: Sat, 4 Jan 2020 04:49:36 +0100 Subject: [PATCH] Use add-on name rather than package name when reporting on conflicts Brings _installationSuccessReport more in line with messaging in AddonManager.toggleEnabled --- qt/aqt/addons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/aqt/addons.py b/qt/aqt/addons.py index e0eb7cd5f..b6d4b46db 100644 --- a/qt/aqt/addons.py +++ b/qt/aqt/addons.py @@ -385,7 +385,7 @@ and have been disabled: %(found)s" strings.append( _("The following conflicting add-ons were disabled:") + " " - + " ".join(result.conflicts) + + ", ".join(self.addonName(f) for f in result.conflicts) ) return strings