From e3e2379a57bee73b5f4d5afdbe441d0ba7f1c651 Mon Sep 17 00:00:00 2001 From: ggodot Date: Wed, 12 Feb 2025 16:23:59 +0100 Subject: [PATCH] dubleqotes bug repared --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index e4894cf..4d274c2 100644 --- a/bot.py +++ b/bot.py @@ -132,9 +132,9 @@ async def funfact(ctx): ran = randrange(len(jokes["funfacts"])) try: - await ctx.respond(f"Jednou jsem slyšela že: {jokes["funfacts"][ran]["txt"]}") + await ctx.respond(f"Jednou jsem slyšela že: {jokes['funfacts'][ran]['txt']}") except: - await ctx.send(f"Jednou jsem slyšela že: {jokes["funfacts"][ran]["txt"]}") + await ctx.send(f"Jednou jsem slyšela že: {jokes['funfacts'][ran]['txt']}") msg = await ctx.send(f"Co myslíš?")