From 158e76a13059bd0a6ab821bc722b8ac2ae1f1460 Mon Sep 17 00:00:00 2001 From: Joe R Date: Sun, 6 Feb 2022 22:54:39 -0500 Subject: [PATCH] Fixed crash in Ladybug game in Kivy. --- pysollib/games/numerica.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysollib/games/numerica.py b/pysollib/games/numerica.py index d7eb4965..0bf4de9c 100644 --- a/pysollib/games/numerica.py +++ b/pysollib/games/numerica.py @@ -1159,7 +1159,7 @@ class Ladybug(Game): if self.preview > 1: return for row in self.s.rows: - row.texts.misc.config(text=self.getTotal(row)) + row.texts.misc.config(text=str(self.getTotal(row))) def isGameWon(self): for row in self.s.rows: