From e19f06929a0673789e6eb40c9e156e562f5c555b Mon Sep 17 00:00:00 2001 From: Pred <61093863+Predeactor@users.noreply.github.com> Date: Sun, 4 Apr 2021 18:02:55 +0200 Subject: [PATCH] Update redbot/cogs/downloader/downloader.py Co-authored-by: jack1142 <6032823+jack1142@users.noreply.github.com> --- redbot/cogs/downloader/downloader.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/redbot/cogs/downloader/downloader.py b/redbot/cogs/downloader/downloader.py index a6f872583..94d96c246 100644 --- a/redbot/cogs/downloader/downloader.py +++ b/redbot/cogs/downloader/downloader.py @@ -945,11 +945,12 @@ class Downloader(commands.Cog): "\nDownloader has removed the cog {cog} from the installed cogs list" " but it wasn't able to find his files." ).format(cog=inline(failed_cogs[0])) + _( - "\nIt was most likely removed without using `{prefix}cog uninstall`.\n" + "\nIt was most likely removed without using {command_1}.\n" "You may need to remove those files manually if the cog is still usable." - " If so, ensure the cog has been unloaded with {command}." + " If so, ensure the cog has been unloaded with {command_2}." ).format( - command=inline(f"{ctx.clean_prefix}unload {failed_cogs[0]}") + command_1=inline(f"{ctx.clean_prefix}cog uninstall"), + command_2=inline(f"{ctx.clean_prefix}unload {failed_cogs[0]}"), ) await self.send_pagified(ctx, message)