From dcec361410cebb1af17975975b907aa21ec2c420 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 18 Feb 2019 13:07:20 +1000 Subject: [PATCH] wording tweak --- aqt/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/errors.py b/aqt/errors.py index 699593552..821be049e 100644 --- a/aqt/errors.py +++ b/aqt/errors.py @@ -142,7 +142,7 @@ add-ons section of our support site. # reverse to list most likely suspect first, dict to deduplicate: addons = [mw.addonManager.addonName(i) for i in dict.fromkeys(reversed(matches))] - txt = _("""Potentially affected add-ons: {}\n""") + txt = _("""Add-ons possibly involved: {}\n""") # highlight importance of first add-on: addons[0] = "{}".format(addons[0]) return txt.format(", ".join(addons))