[Downloader] Move author key handling to RepoJSONMixin, fix NameError (#3285)

* Update downloader.py

* Update json_mixins.py

* Update installable.py

* changelog pt 1

* changelog pt2

* edit of changelog pt1

* edit of changelog pt 2 (last commit before review)

* Kidding, this is the last one before review.
This commit is contained in:
jack1142
2020-01-08 19:08:55 +01:00
committed by Michael H
parent f5949f2664
commit af859aa755
5 changed files with 10 additions and 10 deletions

View File

@@ -1094,7 +1094,7 @@ class Downloader(commands.Cog):
if name_already_used:
message += _(
"\nSome cogs with these names are already installed from different repos: "
) + humanize_list(already_installed)
) + humanize_list(name_already_used)
correct_cogs, add_to_message = self._filter_incorrect_cogs(cogs)
if add_to_message:
return correct_cogs, f"{message}{add_to_message}"