From dd397ae7c0288ac1ea76abd4c4e353f3d91086f6 Mon Sep 17 00:00:00 2001 From: Emmy D'Anello Date: Fri, 5 Jul 2024 12:02:40 +0200 Subject: [PATCH] Fix string Signed-off-by: Emmy D'Anello --- draw/consumers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/draw/consumers.py b/draw/consumers.py index 4633f6b..ed41520 100644 --- a/draw/consumers.py +++ b/draw/consumers.py @@ -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()