From 33eb35ca2ff9bebb6b105ff91f7cacdb2c9fc10e Mon Sep 17 00:00:00 2001 From: Twixes Date: Tue, 14 Aug 2018 05:07:03 +0200 Subject: [PATCH] Improved wording of the "command disabled" message --- somsiad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/somsiad.py b/somsiad.py index 43f672a2..bed0e2e6 100644 --- a/somsiad.py +++ b/somsiad.py @@ -61,7 +61,7 @@ async def on_command_error(ctx, error): if isinstance(error, ignored): return elif isinstance(error, commands.DisabledCommand): - return await ctx.send(f'{ctx.command} została wyłączona.') + return await ctx.send(f'Komenda {ctx.command} została wyłączona.') elif isinstance(error, commands.NoPrivateMessage): try: return await ctx.author.send(f'Komenda {ctx.command} nie może zostać użyta w prywatnej wiadomości.')