Use add-on name rather than package name when reporting on conflicts

Brings _installationSuccessReport more in line with messaging in
AddonManager.toggleEnabled
This commit is contained in:
Glutanimate 2020-01-04 04:49:36 +01:00
parent 7348e9c69e
commit a2124e2ee8

View File

@ -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