From e4b0ec83dc69df2d1b94b63e1ecc7a73dd34bcb5 Mon Sep 17 00:00:00 2001 From: sigmasternchen Date: Fri, 25 Oct 2024 18:15:45 +0200 Subject: [PATCH] fix: character encoding --- generator/__main__.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/generator/__main__.py b/generator/__main__.py index 75b7ffa..78881d5 100644 --- a/generator/__main__.py +++ b/generator/__main__.py @@ -12,12 +12,12 @@ env = Environment( template = env.get_template("template.html") taunts = [ - "Looks like you’re just one step away from defeat! Better luck next time!", - "You might want to start practicing your ‘congratulations’ speech for me!", - "I hope you’re ready to accept your fate—because it’s coming fast!", - "You can almost hear the victory music playing for me, can’t you?", - "You’re about to witness a masterclass in losing—starring you!", - "You’re on the express train to defeat, and I’m the conductor!" + "Looks like you're just one step away from defeat! Better luck next time!", + "You might want to start practicing your 'congratulations' speech for me!", + "I hope you're ready to accept your fate - because it's coming fast!", + "You can almost hear the victory music playing for me, can't you?", + "You're about to witness a masterclass in losing - starring you!", + "You're on the express train to defeat, and I'm the conductor!" ] random.seed(1337)