Skip to content

Commit 08694cb

Browse files
committed
Fix attr access
1 parent e0a2201 commit 08694cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redbot/cogs/downloader/downloader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,13 +1027,13 @@ async def _format_cog_update_result(
10271027
) + humanize_list(tuple(map(inline, cognames)))
10281028
if not update_result.outdated_cogs:
10291029
message = _("No cogs were updated.")
1030-
if update_result.installed_libs:
1030+
if update_result.updated_libs:
10311031
message += (
10321032
_(
10331033
"\nSome shared libraries were updated, you should restart the bot "
10341034
"to bring the changes into effect."
10351035
)
1036-
if len(update_result.installed_libs) > 1
1036+
if len(update_result.updated_libs) > 1
10371037
else _(
10381038
"\nA shared library was updated, you should restart the "
10391039
"bot to bring the changes into effect."

0 commit comments

Comments
 (0)