Addon Manager: Correct error message

This commit is contained in:
Chris Hennes
2022-03-21 09:24:46 -05:00
parent 9fe1bdb092
commit 2118d544da

View File

@@ -992,8 +992,8 @@ class CommandAddonManager:
if bad_packages:
message = "<p>" + translate(
"AddonsInstaller",
"The Addon {} requires Python packages that are not installed, and cannot be installed automatically. To use this workbench you must install the following Python packages manually:",
).format(repo.name) + "</p><ul>"
"This addon requires Python packages that are not installed, and cannot be installed automatically. To use this workbench you must install the following Python packages manually:",
) + "</p><ul>"
if len(bad_packages) < 15:
for dep in bad_packages:
message += f"<li>{dep}</li>"