Fix formatting in error message about already installed cog (#5531)

This commit is contained in:
aikaterna 2022-01-04 16:52:15 -08:00 committed by GitHub
parent fbe378657c
commit 6ff844e605
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1447,7 +1447,7 @@ class Downloader(commands.Cog):
message += (
_("\nSome cogs with these names are already installed from different repos: ")
if len(name_already_used) > 1
else _("\nCog with this name is already installed from a different repo.")
else _("\nCog with this name is already installed from a different repo: ")
) + humanize_list(name_already_used)
correct_cogs, add_to_message = self._filter_incorrect_cogs(cogs)
if add_to_message: