We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0a2201 commit 08694cbCopy full SHA for 08694cb
redbot/cogs/downloader/downloader.py
@@ -1027,13 +1027,13 @@ async def _format_cog_update_result(
1027
) + humanize_list(tuple(map(inline, cognames)))
1028
if not update_result.outdated_cogs:
1029
message = _("No cogs were updated.")
1030
- if update_result.installed_libs:
+ if update_result.updated_libs:
1031
message += (
1032
_(
1033
"\nSome shared libraries were updated, you should restart the bot "
1034
"to bring the changes into effect."
1035
)
1036
- if len(update_result.installed_libs) > 1
+ if len(update_result.updated_libs) > 1
1037
else _(
1038
"\nA shared library was updated, you should restart the "
1039
"bot to bring the changes into effect."
0 commit comments