mirror of
https://github.com/sigmasternchen/html-tictactoe
synced 2025-03-15 03:28:55 +00:00
fix: character encoding
This commit is contained in:
parent
b9256901f6
commit
e4b0ec83dc
1 changed files with 6 additions and 6 deletions
|
@ -12,12 +12,12 @@ env = Environment(
|
||||||
template = env.get_template("template.html")
|
template = env.get_template("template.html")
|
||||||
|
|
||||||
taunts = [
|
taunts = [
|
||||||
"Looks like you’re just one step away from defeat! Better luck next time!",
|
"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!",
|
"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!",
|
"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 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 about to witness a masterclass in losing - starring you!",
|
||||||
"You’re on the express train to defeat, and I’m the conductor!"
|
"You're on the express train to defeat, and I'm the conductor!"
|
||||||
]
|
]
|
||||||
|
|
||||||
random.seed(1337)
|
random.seed(1337)
|
||||||
|
|
Loading…
Reference in a new issue