From ca19ecaefc123491e88d94362511174aa65db159 Mon Sep 17 00:00:00 2001 From: Will Date: Fri, 8 Jun 2018 20:48:46 -0400 Subject: [PATCH] [V3 Downloader] Add a requirements list to cog info (#1827) --- redbot/cogs/downloader/downloader.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/redbot/cogs/downloader/downloader.py b/redbot/cogs/downloader/downloader.py index 2c3f95e05..f9707c863 100644 --- a/redbot/cogs/downloader/downloader.py +++ b/redbot/cogs/downloader/downloader.py @@ -416,7 +416,9 @@ class Downloader: ) return - msg = _("Information on {}:\n{}").format(cog.name, cog.description or "") + msg = _("Information on {}:\n{}\n\nRequirements: {}").format( + cog.name, cog.description or "", ", ".join(cog.requirements) or "None" + ) await ctx.send(box(msg)) async def is_installed(