Fix string

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello 2024-07-05 12:02:40 +02:00
parent 3f2a757414
commit dd397ae7c0
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 2 additions and 1 deletions

View File

@ -508,7 +508,8 @@ class DrawConsumer(AsyncJsonWebsocketConsumer):
msg = _("The dice results are the following: {trigrams}. "
"The passage order and the compositions of the different pools are displayed on the side. "
"The passage orders for the first round are determined from the dice scores, in increasing order. "
"For the second round, the passage orders are determined from the passage orders of the first round.")
"For the second round, the passage orders are determined from the passage orders of the first round.") \
.format(trigrams=trigrams)
self.tournament.draw.last_message = msg
await self.tournament.draw.asave()