diff --git a/kabot/kabot/kabot.py b/kabot/kabot/kabot.py index e7d2742..ee1085a 100644 --- a/kabot/kabot/kabot.py +++ b/kabot/kabot/kabot.py @@ -140,9 +140,10 @@ class Mybot(commands.Cog): with open(path) as file: lines = file.read().splitlines() myline = random.choice(lines) + question, reponse = myline.split(";") try: - response = "%s" % (myline) + response = '''Question ! : %s RĂ©ponse : ||%s||''' % (question, reponse) except: response = "Unknow error, try: !contrepeterie [mot clef]" await ctx.send(response)