From 1ba922eba22f0ce4e2bf4145e7660ab7f40e6e6c Mon Sep 17 00:00:00 2001 From: Christopher Rice Date: Sun, 14 Oct 2018 02:11:16 -0400 Subject: [PATCH] [Downloader] Add missing `prefix` format kwarg (#2238) Fixes #2237. --- redbot/cogs/downloader/downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/cogs/downloader/downloader.py b/redbot/cogs/downloader/downloader.py index f9df14c99..4019a01f8 100644 --- a/redbot/cogs/downloader/downloader.py +++ b/redbot/cogs/downloader/downloader.py @@ -344,7 +344,7 @@ class Downloader(commands.Cog): " files manually if it is still usable." " Also make sure you've unloaded the cog" " with `{prefix}unload {cog_name}`." - ).format(cog_name=real_name) + ).format(prefix=ctx.prefix, cog_name=real_name) ) @cog.command(name="update")