1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fixed crash in Ladybug game in Kivy.

This commit is contained in:
Joe R 2022-02-06 22:54:39 -05:00
parent b49844e15b
commit 158e76a130

View file

@ -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: