Verbosity fix V1.0.7

This commit is contained in:
Patryk Mazur
2026-04-22 20:28:59 +02:00
parent 5dfb4de2a9
commit 5173e603d4
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -17,9 +17,9 @@ class Simp(commands.Cog):
await ctx.respond(f'Błąd pobierania: {result["message"]}')
return
print(f'Wysyłanie \"{result["title"]}\" na kanał {ctx.channel.name} ({ctx.guild.name})')
print(f'Wysyłanie "{result["title"]}" na kanał {ctx.channel.name} ({ctx.guild.name})')
await ctx.respond(file=discord.File(result['filename']))
print(f'Wysyłano \"{result["title"]}\" na kanał {ctx.channel.name} ({ctx.guild.name})')
print(f'Wysyłano "{result["title"]}" na kanał {ctx.channel.name} ({ctx.guild.name})')
def setup(bot: discord.Bot):